diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2024-10-19 18:55:36 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2024-10-19 18:55:36 +0200 |
commit | 35b3bae52693f5f5ed21ecf3cfeb68cc2047aba0 (patch) | |
tree | 5f16ba62d9e5a03e9cf56c4e85b60bbf7f95f38a /terraform/dns | |
parent | 6e8565e4694b55de9a30ce91f991bcc0bb0bd0bf (diff) | |
download | infra-35b3bae52693f5f5ed21ecf3cfeb68cc2047aba0.tar.gz infra-35b3bae52693f5f5ed21ecf3cfeb68cc2047aba0.tar.bz2 infra-35b3bae52693f5f5ed21ecf3cfeb68cc2047aba0.tar.xz infra-35b3bae52693f5f5ed21ecf3cfeb68cc2047aba0.zip |
ipam: Fixing coregonus
Diffstat (limited to 'terraform/dns')
-rw-r--r-- | terraform/dns/dn42.tf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/terraform/dns/dn42.tf b/terraform/dns/dn42.tf index 857b165..9363b60 100644 --- a/terraform/dns/dn42.tf +++ b/terraform/dns/dn42.tf @@ -7,9 +7,9 @@ resource "linode_domain_record" "dn42-conflatorio" { target = "fdb1:4242:3538:2008:8042:32ff:fe0c:7161" } -resource "linode_domain_record" "dn42-coregonus-ix" { +resource "linode_domain_record" "dn42-coregonus" { domain_id = linode_domain.root.id - name = "coregonus-ix.dn42" + name = "coregonus.dn42" record_type = "AAAA" target = "fdb1:4242:3538:2005::ffff" } @@ -53,12 +53,12 @@ resource "linode_domain_record" "dn42-node1" { domain_id = linode_domain.root.id name = "node1.dn42" record_type = "AAAA" - target = "fdb1:4242:3538:2002::" + target = "fdb1:4242:3538:2002::ffff" } resource "linode_domain_record" "dn42-node2" { domain_id = linode_domain.root.id name = "node2.dn42" record_type = "AAAA" - target = "fdb1:4242:3538:2003::" + target = "fdb1:4242:3538:2003::ffff" } |