Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.23 KB

File metadata and controls

47 lines (33 loc) · 1.23 KB
page_title subcategory description
anxcloud_dns_records Data Source - terraform-provider-anxcloud
Provides DNS records for a specified zone.

anxcloud_dns_records (Data Source)

Provides DNS records for a specified zone.

Example Usage

data "anxcloud_dns_records" "example" {
  zone_name = "example.com"
}

Schema

Required

  • zone_name (String) Parent zone

Read-Only

  • id (String) The ID of this resource.
  • records (List of Object) List of known records on the zone (see below for nested schema)

Nested Schema for records

Read-Only:

  • identifier (String) DNS Record identifier. Changes on revision change and therefore shouldn't be used as reference.
  • immutable (Boolean) Specifies whether or not a record is immutable.
  • name (String) DNS record name.
  • rdata (String) DNS record data.
  • region (String) DNS record region (for GeoDNS aware records).
  • ttl (Number) Region specific TTL. If not set the zone TTL will be used.
  • type (String) DNS record type.
  • zone_name (String) Zone of DNS record.