diff --git a/examples/full/main.tf b/examples/full/main.tf index 2359c9e..9a347c8 100644 --- a/examples/full/main.tf +++ b/examples/full/main.tf @@ -15,6 +15,10 @@ module "fck-nat" { ha_mode = false use_nat64 = local.ipv6_support + # Pre-release version of the AMI + # Replace the below with the ID according to your region and architecture: https://github.com/AndrewGuenther/fck-nat/issues/41#issuecomment-2036191471 + ami_id = "ami-0c2e470170d2a48e3" # ARM us-east-1 + update_route_table = true route_tables_ids = { "private" = aws_route_table.private.id diff --git a/examples/full/network.tf b/examples/full/network.tf index cf09cad..82d4e9c 100644 --- a/examples/full/network.tf +++ b/examples/full/network.tf @@ -62,6 +62,7 @@ resource "aws_subnet" "private" { cidr_block = cidrsubnet(local.vpc_cidr, 4, 1) availability_zone = "${data.aws_region.current.name}a" ipv6_cidr_block = local.ipv6_support ? cidrsubnet(aws_vpc.main.ipv6_cidr_block, 8, 1) : null + enable_dns64 = local.ipv6_support tags = { Name = "${local.name}-private"