8 lines
238 B
Terraform
8 lines
238 B
Terraform
resource "linode_domain_record" "this_ipv4" {
|
|
count = var.create_dns_record ? 1 : 0
|
|
domain_id = data.linode_domain.this[0].id
|
|
name = var.host_name
|
|
record_type = "A"
|
|
target = linode_instance.this.ip_address
|
|
}
|