Skip to content

Commit

Permalink
Disable DNS64
Browse files Browse the repository at this point in the history
Problem: DNS64 needs a dedicated route for domains that don't
have IPv6 record. This route is not provided by the VPC module,
thus resolving doesn't work.

Solution: Disable DNS64.
  • Loading branch information
rvem committed Sep 5, 2023
1 parent 2270f3d commit 42d3011
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions terraform/main.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ in {
};
};

module.vpc = {
public_subnet_enable_dns64 = false;
public_subnet_enable_resource_name_dns_aaaa_record_on_launch = false;
};

resource.aws_key_pair.balsoft = {
key_name = "balsoft";
public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDd2OdcSHUsgezuV+cpFqk9+Svtup6PxIolv1zokVZdqvS8qxLsA/rwYmQgTnuq4/zK/GIxcUCH4OxYlW6Or4M4G7qrDKcLAUrRPWkectqEooWRflZXkfHduMJhzeOAsBdMfYZQ9024GwKr/4yriw2BGa8GbbAnQxiSeTipzvXHoXuRME+/2GsMFAfHFvxzXRG7dNOiLtLaXEjUPUTcw/fffKy55kHtWxMkEvvcdyR53/24fmO3kLVpEuoI+Mp1XFtX3DvRM9ulgfwZUn8/CLhwSLwWX4Xf9iuzVi5vJOJtMOktQj/MwGk4tY/NPe+sIk+nAUKSdVf0y9k9JrJT98S/ cardno:000610645773";
Expand Down

0 comments on commit 42d3011

Please sign in to comment.