Compare commits

..

1 Commits

Author SHA1 Message Date
883538a97a Again remove rdns so we can work before migration... 2022-06-01 21:58:31 -05:00
2 changed files with 0 additions and 16 deletions

View File

@@ -1,8 +0,0 @@
resource "linode_rdns" "this_ipv4" {
address = linode_instance.this.ip_address
depends_on = [
linode_domain_record.this_ipv4,
]
rdns = "${var.host_name}.${var.domain_name}"
wait_for_available = false
}

View File

@@ -1,8 +0,0 @@
resource "linode_rdns" "this_ipv6" {
address = element(split("/", linode_instance.this.ipv6), 0)
depends_on = [
linode_domain_record.this_ipv6,
]
rdns = "${var.host_name}.${var.domain_name}"
wait_for_available = false
}