-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements missing attribute. Adds documentation.
- Loading branch information
1 parent
a18a1bc
commit 5fc1fd6
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# `improvmx_domain_check` Data Source | ||
|
||
A data source to read domain check status. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "improvmx_domain_check" "example_com" { | ||
domain = "example.com" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
* `domain` - (Required) Name of the domain. | ||
|
||
## Attribute Reference | ||
|
||
* `id` - (int) Unique ID | ||
* `domain` - (string) Name of the domain | ||
* `records_are_valid` - (bool) Whether all records are valid or not | ||
* `record_mx_is_valid` - (bool) Whether mx record is valid or not | ||
* `record_mx_expected_values` - (list) Expected mx records | ||
* `record_mx_actual_values` - (list) Actual mx records | ||
* `record_spf_is_valid` - (bool) Whether spf record is valid or not | ||
* `record_spf_expected_value` - (list) Expected spf record | ||
* `record_spf_actual_value` - (list) Actual spf record |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters