Im creating this cname record set, but when put the command "terraform plan", i got this message " DNS zone name "cname" must be fully qualified: "azure.foo.com.br". I
m using Terraform v0.14.7.
In the azure platform in “DNS Zones” i have already created a zone called: foo.com.br
Anyone could help me ? What should i do ?
provider “azurerm” {
features {}
}
resource “dns_cname_record” “tech” {
zone = “foo.com.br”
name = “tech.foo.com.br”
cname = “azure.foo.com.br”
ttl = 3600
}