Allow addVpc with different region in existing private hosted zone

99 Views Asked by At

I stucked in addVpc from fromLookup

region : us-east-1
} else{
  privatehostedZone = route53.HostedZone.fromLookup(
    this, 'privatehostedZone ', {
    domainName: domainName,
    privateZone: true,
  });
  privatehostedZone.addVpc(vpc)
}

Is there any ways to addvpc into existing private hosted zone by cdk

0

There are 0 best solutions below