Revert to deprecated value since ipv4 return is an array!?

Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
This commit is contained in:
Jason Rothstein 2025-05-11 18:38:38 -05:00
parent ed7df9d205
commit ec2db2e867
Signed by: jmrothst
GPG Key ID: 741BF3C536829D46

View File

@ -2,5 +2,5 @@ resource "linode_domain_record" "this_ipv4" {
domain_id = data.linode_domain.this.id
name = var.host_name
record_type = "A"
target = linode_instance.this.ipv4
target = linode_instance.this.ip_address
}