Again remove rdns so we can work before migration...

This commit is contained in:
Jason Rothstein 2022-06-01 21:58:31 -05:00
parent 490b2279b4
commit 883538a97a
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
}