arrow-left

All pages
1 of 1

Loading...

ionoscloud_dns_zone

Get information on a DNS Zone.

The DNS Zone can be used to search for and return an existing DNS Zone. If a single match is found, it will be returned. If your search results in multiple matches, an error will be returned. When this happens, please refine your search and make sure that your resources have unique names.

⚠️ Only tokens are accepted for authorization in the ionoscloud_dns_zone data source. Please ensure you are using tokens as other methods will not be valid.

hashtag
Example Usage

hashtag
By ID

hashtag
By name

hashtag
By name with partial match

hashtag
Argument reference

  • id - (Optional)[string] The ID of the DNS Zone you want to search for.

  • name - (Optional)[string] The name of the DNS Zone you want to search for.

  • partial_match

Either id or name must be provided. If none, or both are provided, the datasource will return an error.

hashtag
Attributes Reference

The following attributes are returned by the datasource:

  • id - The UUID of the DNS Zone.

  • name - The name of the DNS Zone.

  • description

- (Optional)[bool] Whether partial matching is allowed or not when using name argument. Default value is false.
- The description of the DNS Zone.
  • enabled - Indicates if the DNS Zone is activated or not.

  • nameservers - A list of available name servers.

  • data "ionoscloud_dns_zone" "example" {
      id = "zone_id"
    }
    data "ionoscloud_dns_zone" "example" {
      name = "example.com"
    }
    data "ionoscloud_dns_zone" "example" {
      name = "example"
      partial_match = true
    }