terraform-provider-ovh
terraform-provider-ovh copied to clipboard
Domain A record is added, not updated
Hello there,
Using ovh_domain_zone_record terraform is adding second A record instead of changing current one.
My configuration for Azure:
resource "ovh_domain_zone_record" "testip" { zone = var.domain_name subdomain = null fieldtype = "A" ttl = "0" target = data.azurerm_public_ip.pipread.ip_address
depends_on = [ azurerm_public_ip.pip ] }