diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2024-05-19 18:19:31 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2024-05-19 18:19:31 +0200 |
commit | a791390832d13ee196f444dec7d1c3df2d15cb48 (patch) | |
tree | 2e5f63dbc42b05026623359d2ab1941904bd6b4e /terraform/dns | |
parent | 863546a69eafab9135a7835192c79dea736c35a7 (diff) | |
download | infra-a791390832d13ee196f444dec7d1c3df2d15cb48.tar.gz infra-a791390832d13ee196f444dec7d1c3df2d15cb48.tar.bz2 infra-a791390832d13ee196f444dec7d1c3df2d15cb48.tar.xz infra-a791390832d13ee196f444dec7d1c3df2d15cb48.zip |
Adding biwia to DNS.
Diffstat (limited to 'terraform/dns')
-rw-r--r-- | terraform/dns/vpn.tf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/terraform/dns/vpn.tf b/terraform/dns/vpn.tf index 10a1d8e..d73d01e 100644 --- a/terraform/dns/vpn.tf +++ b/terraform/dns/vpn.tf @@ -71,3 +71,9 @@ resource "linode_domain_record" "vpn-lhn2ix" { record_type = "AAAA" target = "fdf3:aad9:a885:0b3a::15" } +resource "linode_domain_record" "vpn-biwia" { + domain_id = linode_domain.root.id + name = "biwia.vpn" + record_type = "AAAA" + target = "fdf3:aad9:a885:0b3a::17" +} |