From d30d57de5c884edbaac6b42ec794f85d666c73a9 Mon Sep 17 00:00:00 2001 From: Alexander Amiri Date: Fri, 27 Mar 2026 00:14:15 +0100 Subject: [PATCH] Add missing www AAAA records for javabin.no and javabin.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Domeneshop auto-generates these from its defaults — they weren't in the API export but need to exist in Route 53 for IPv6 resolution. --- terraform/platform/dns/main.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/terraform/platform/dns/main.tf b/terraform/platform/dns/main.tf index 88ff2c8..d46fdfe 100644 --- a/terraform/platform/dns/main.tf +++ b/terraform/platform/dns/main.tf @@ -48,6 +48,14 @@ resource "aws_route53_record" "javabin_com_www" { records = ["194.63.248.52"] } +resource "aws_route53_record" "javabin_com_www_aaaa" { + zone_id = aws_route53_zone.javabin_com.zone_id + name = "www.javabin.com" + type = "AAAA" + ttl = 3600 + records = ["2a01:5b40:0:248::52"] +} + resource "aws_route53_record" "javabin_com_dmarc" { zone_id = aws_route53_zone.javabin_com.zone_id name = "_dmarc.javabin.com" @@ -93,6 +101,14 @@ resource "aws_route53_record" "javabin_no_www" { records = ["194.63.248.52"] } +resource "aws_route53_record" "javabin_no_www_aaaa" { + zone_id = aws_route53_zone.javabin_no.zone_id + name = "www.javabin.no" + type = "AAAA" + ttl = 3600 + records = ["2a01:5b40:0:248::52"] +} + resource "aws_route53_record" "javabin_no_mx" { zone_id = aws_route53_zone.javabin_no.zone_id name = "javabin.no"