FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

azurerm_dns_zone

Enables you to manage DNS zones within Azure DNS. These zones are hosted on Azure’s name servers to which you can delegate the zone from the parent domain.

Example Usage

resource "azurerm_resource_group" "test" {
   name = "acceptanceTestResourceGroup1"
   location = "West US"
}
resource "azurerm_dns_zone" "test" {
   name = "mydomain.com"
   resource_group_name = "${azurerm_resource_group.test.name}"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

DNS Zones can be imported using the resource id, e.g.

terraform import azurerm_dns_zone.zone1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/dnsZones/zone1

See the source of this document at Terraform.io