chore(aws-staging): disable DNS64 (#5483)

DNS64 without a NAT64 gateway breaks IPv4-only resources because we
receive AAAA records from the `64:ff9b::/96` subnet, yet nothing
actually routes and translates these packets.
This commit is contained in:
Thomas Eizinger
2024-06-22 08:13:15 +10:00
committed by GitHub
parent 55b3b06626
commit 5997712e9f

View File

@@ -36,6 +36,7 @@ module "vpc" {
enable_ipv6 = true
public_subnet_assign_ipv6_address_on_creation = true
private_subnet_assign_ipv6_address_on_creation = true
public_subnet_enable_dns64 = false # DNS64 without a NAT64 gateway breaks IPv4-only resources
public_subnet_ipv6_prefixes = [0, 1]
private_subnet_ipv6_prefixes = [2, 3]