Initial commit
This commit is contained in:
commit
e4c8a6fbf4
186 changed files with 29501 additions and 0 deletions
42
docs/data-sources/dns_record_set.md
Normal file
42
docs/data-sources/dns_record_set.md
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
---
|
||||
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
||||
page_title: "stackit_dns_record_set Data Source - stackit"
|
||||
subcategory: ""
|
||||
description: |-
|
||||
DNS Record Set Resource schema.
|
||||
---
|
||||
|
||||
# stackit_dns_record_set (Data Source)
|
||||
|
||||
DNS Record Set Resource schema.
|
||||
|
||||
## Example Usage
|
||||
|
||||
```terraform
|
||||
data "stackit_dns_record_set" "example" {
|
||||
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
||||
zone_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
||||
record_set_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
||||
}
|
||||
```
|
||||
|
||||
<!-- schema generated by tfplugindocs -->
|
||||
## Schema
|
||||
|
||||
### Required
|
||||
|
||||
- `project_id` (String) STACKIT project ID to which the dns record set is associated.
|
||||
- `record_set_id` (String) The rr set id.
|
||||
- `zone_id` (String) The zone ID to which is dns record set is associated.
|
||||
|
||||
### Read-Only
|
||||
|
||||
- `active` (Boolean) Specifies if the record set is active or not.
|
||||
- `comment` (String) Comment.
|
||||
- `error` (String) Error shows error in case create/update/delete failed.
|
||||
- `id` (String) Terraform's internal resource ID.
|
||||
- `name` (String) Name of the record which should be a valid domain according to rfc1035 Section 2.3.4. E.g. `example.com`
|
||||
- `records` (List of String) Records.
|
||||
- `state` (String) Record set state.
|
||||
- `ttl` (Number) Time to live. E.g. 3600
|
||||
- `type` (String) The record set type. E.g. `A` or `CNAME`
|
||||
Loading…
Add table
Add a link
Reference in a new issue