diff options
Diffstat (limited to 'terraform')
-rw-r--r-- | terraform/dns/trygvis.tf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/terraform/dns/trygvis.tf b/terraform/dns/trygvis.tf index 667ba83..cae6b45 100644 --- a/terraform/dns/trygvis.tf +++ b/terraform/dns/trygvis.tf @@ -17,6 +17,13 @@ resource "linode_domain_record" "root-a" { target = "176.58.112.84" } +resource "linode_domain_record" "root-aaaa" { + domain_id = linode_domain.root.id + name = "" + record_type = "AAAA" + target = "2a01:7e00::f03c:91ff:feae:93a3" +} + resource "linode_domain_record" "root-mx" { domain_id = linode_domain.root.id name = "" |