azurerm_private_dns_zone

Enables you to manage Private DNS zones within Azure DNS. These zones are hosted on Azure's name servers.

Example Usage

resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_private_dns_zone" "example" {
  name                = "mydomain.com"
  resource_group_name = azurerm_resource_group.example.name
}

Argument Reference

The following arguments are supported:


The soa_record block supports:

Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:


A soa_record block exports the following:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

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

terraform import azurerm_private_dns_zone.zone1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1