Use this data source to obtain information about a DNS Zone.
data "azurerm_dns_zone" "test" { name = "search-eventhubns" resource_group_name = "search-service" } output "dns_zone_id" { value = "${data.azurerm_dns_zone.test.id}" }
name
- (Required) The name of the DNS Zone. resource_group_name
- (Optional) The Name of the Resource Group where the DNS Zone exists. If the Name of the Resource Group is not provided, the first DNS Zone from the list of DNS Zones in your subscription that matches name
will be returned. id
- The ID of the DNS Zone.
max_number_of_record_sets
- Maximum number of Records in the zone.
number_of_record_sets
- The number of records already in the zone.
name_servers
- A list of values that make up the NS record for the zone.
tags
- A mapping of tags to assign to the EventHub Namespace.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurerm/d/dns_zone.html