Guy Shechter
12/29/2021, 6:05 AMIt seems you are configuring custom domains for you URL. And SST is not able to find the hosted zone "<http://qa.mydomain.com|qa.mydomain.com>" in your AWS Route 53 account. Please double check and make sure the zone exists, or pass in a different zone.Derek Kershner
12/29/2021, 4:59 PMaddDependencyDerek Kershner
12/29/2021, 4:59 PMGuy Shechter
12/29/2021, 5:00 PMGuy Shechter
12/29/2021, 5:01 PMDerek Kershner
12/29/2021, 5:04 PMDerek Kershner
12/30/2021, 3:58 PMJay
Frank
Frank
Frank
ApiHostedZone.fromLookup()Frank
customDomainGuy Shechter
01/04/2022, 1:24 AMFrank
customDomainGuy Shechter
01/04/2022, 1:25 AMGuy Shechter
01/04/2022, 4:33 AMPlatformStack.jsthis.hostedZone = new route53.HostedZone(this, 'route53zone', {
      zoneName: ( this.scope.stage === 'prod' )
          ? process.env.DOMAIN_NAME
          : `${ this.scope.stage }.${ process.env.DOMAIN_NAME }`,
    });ApiStack.jsconst { hostedZone } = props;
this.api = new sst.Api(this, 'api', {
      customDomain: {
        domainName: `api.${ hostedZone.zoneName }`,
        hostedZone: hostedZone.zoneName,
        path: 'v1',
      },
        ....
}Frank
const { hostedZone } = props;
this.api = new sst.Api(this, 'api', {
  customDomain: {
    domainName: `api.${ hostedZone.zoneName }`,
    hostedZone: hostedZone,
    path: 'v1',
  },
  ....
}hostedZonecustomDomain.hostedZoneFrank
customDomain.hostedZoneFrank
Guy Shechter
01/25/2022, 2:37 AMGuy Shechter
01/25/2022, 2:39 AMconst vpcStack = new VpcStack(app, "vpc");
const dbStack = new DatabaseStack(app, "db", {
    vpc: vpcStack.vpc
  });Derek Kershner
01/25/2022, 3:37 PMfrom