azurerm_private_dns_ptr_record

Enables you to manage DNS PTR Records within Azure Private DNS.

Example Usage

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

resource "azurerm_private_dns_zone" "example" {
  name                = "2.0.192.in-addr.arpa"
  resource_group_name = azurerm_resource_group.example.name
}

resource "azurerm_private_dns_ptr_record" "example" {
  name                = "15"
  zone_name           = azurerm_private_dns_zone.example.name
  resource_group_name = azurerm_resource_group.example.name
  ttl                 = 300
  records             = ["test.example.com"]
}

Argument Reference

The following arguments are supported:

Attributes Reference

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

Timeouts

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

Import

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

terraform import azurerm_private_dns_ptr_record.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/2.0.192.in-addr.arpa/PTR/15