FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

azurerm_dns_txt_record

Enables you to manage DNS TXT Records within Azure DNS.

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}"
}

resource "azurerm_dns_txt_record" "test" {
   name = "test"
   zone_name = "${azurerm_dns_zone.test.name}"
   resource_group_name = "${azurerm_resource_group.test.name}"
   ttl = "300"
   record {
    value = "google-site-authenticator"
   }
   record {
    value = "more site information here"
   }
   
   tags {
    Environment = "Production"
   }
}

Argument Reference

The following arguments are supported:

The record block supports:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io