-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added docs. Added ForceNew for not editable fields.
- Loading branch information
Showing
12 changed files
with
527 additions
and
64 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
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
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
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
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
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,64 @@ | ||
--- | ||
layout: "selectel" | ||
page_title: "Selectel: selectel_domains_rrset_v2" | ||
sidebar_current: "docs-selectel-datasource-domains-rrset-v2" | ||
description: |- | ||
Provides a rrset info in Selectel DNS Hosting using public API v2. | ||
--- | ||
|
||
# selectel\_domains\_rrset_v2 | ||
|
||
Provides a rrset info in DNS Hosting. For more information about rrset in DNS Hosting, see the [official Selectel documentation](https://docs.selectel.ru/networks-services/dns/records/). | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "selectel_domains_rrset_v2" "rrset_1" { | ||
name = "example.com." | ||
type = "A" | ||
zone_id = "zone_id" | ||
} | ||
``` | ||
|
||
With specific project id. | ||
|
||
```hcl | ||
data "selectel_domains_rrset_v2" "rrset_1" { | ||
name = "example.com." | ||
type = "A" | ||
zone_id = "zone_id" | ||
ptoject_id = "project_id" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
* `name` - (Required) Rrset name. | ||
|
||
* `type` - (Required) Rrset type. | ||
|
||
* `zone_id` - (Required) Zone ID. | ||
|
||
* `project_id` - (Optional) Selectel project ID. | ||
|
||
## Attributes Reference | ||
|
||
* `name` - Rrset name. | ||
|
||
* `type` - Rrset type. | ||
|
||
* `zone_id` - Zone ID. | ||
|
||
* `project_id` - Selectel project ID. | ||
|
||
* `ttl` - Rrset TTL. | ||
|
||
* `comment` - Comment for rrset. | ||
|
||
* `managed_by` - Rrset owner. | ||
|
||
* `records` - Set of records: | ||
|
||
* `content` - Value for record. | ||
|
||
* `disabled` - Shows if record available or not. |
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,54 @@ | ||
--- | ||
layout: "selectel" | ||
page_title: "Selectel: selectel_domains_zone_v2" | ||
sidebar_current: "docs-selectel-datasource-domains-zone-v2" | ||
description: |- | ||
Provides a zone info in Selectel DNS Hosting using public API v2. | ||
--- | ||
|
||
# selectel\_domains\_zone_v2 | ||
|
||
Provides a zone info in DNS Hosting (API v2). For more information about zones in DNS Hosting, see the [official Selectel documentation](https://docs.selectel.ru/networks-services/dns/zones/). | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "selectel_domains_zone_v2" "zone_1" { | ||
name = "example.com." | ||
} | ||
``` | ||
|
||
With specific project id. | ||
|
||
```hcl | ||
data "selectel_domains_zone_v2" "zone_1" { | ||
name = "example.com." | ||
project_id = "project_id" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
* `name` - (Required) Zone name. | ||
|
||
* `project_id` - (Optional) Selectel project ID. | ||
|
||
## Attributes Reference | ||
|
||
* `name` - Zone name. | ||
|
||
* `project_id` - Selectel project id. | ||
|
||
* `comment` - Comment for zone. | ||
|
||
* `created_at` - Timestamp when zone was created. | ||
|
||
* `updated_at` - Timestamp when zone was updated. | ||
|
||
* `delegation_checked_at` - Timestamp of last delegation status check. | ||
|
||
* `last_check_status` - Shows if zone delegated to selectel NS servers or not. | ||
|
||
* `last_delegated_at` - Timestamp of last delegation status check when zone was delegated to selectel NS server. | ||
|
||
* `disabled` - Shows if zone available or not. |
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
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
Oops, something went wrong.