Skip to content

Instantly share code, notes, and snippets.

@denzhel
Created April 25, 2022 19:26
Show Gist options
  • Select an option

  • Save denzhel/19381b29c5e01c698129d713d1d783e0 to your computer and use it in GitHub Desktop.

Select an option

Save denzhel/19381b29c5e01c698129d713d1d783e0 to your computer and use it in GitHub Desktop.
aws allow vpc to resolve hosted zone

To allow VPCs to resolve AWS Route53 hosted zones, you need to run the following for each zone and VPC:

aws route53 create-vpc-association-authorization --hosted-zone-id <HostedZoneID> --vpc VPCRegion=<VPCregion>,VPCId=<VPCID>
aws route53 associate-vpc-with-hosted-zone --hosted-zone-id <HostedZoneID> --vpc VPCRegion=<VPCregion>,VPCId=<VPCID>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment