Description
Adding support for dynamic_dns to the existing dns configuration for an SVM.
resource "netapp-ontap_dns" "dns" {
required to know which system to interface with
cx_profile_name = "cluster4"
svm_name = "vs0"
name_servers = ["2.2.2.2"]
dns_domains = ["test.boo.com"]
skip_config_validation = true
dynamic_dns = {
fqdn = "test_dns.bar3.com"
time_to_live = "P5D"
skip_fqdn_validation = true
use_secure = true
enabled = true
}
}
Affected Resource(s) and/or Data Source(s)
netapp-ontap_dns
Potential Terraform Configuration
References
No response
Would you like to implement a fix?
None