0
0
llucycodes42
The ibm_dns_domain resource sets up an internal DNS domain for use by your application. The name attribute specifies the name of the domain, while the target attribute specifies the IP address of the DNS server that the domain should be pointed to.
Shortcut: tf_ibm_dns_domain
resource "ibm_dns_domain" "${myResourceName}" {
name = "my-${myResourceName}"
target = "172.16.0.100"
}