purple-appointment-43233
10/08/2019, 10:55 PMaws.route53.getZone({ name: domainParts.parentDomain }).then(zone => zone.id)
. This is a copy & paste (and very lightly edited) version of the published example on deploying a static website to S3. Any thoughts as to what could be going on? The only thing I can think of that materially changed was that I upgraded to catalina, and had to upgrade some node packages to get it to build…gentle-diamond-70147
10/08/2019, 11:05 PMpurple-appointment-43233
10/08/2019, 11:09 PMType Name Plan Info
pulumi:pulumi:Stack analytics-web-production running ASSUMING ZONE <http://sub.mydomain.com|sub.mydomain.com>. EXISTS
Which comes from a code snippet that looks like:
const domainParts = getDomainAndSubdomain(config.targetDomain);
console.log(`ASSUMING ZONE ${domainParts.parentDomain} EXISTS`);
const hostedZoneId = aws.route53.getZone({ name: domainParts.parentDomain }).then(zone => zone.id);
console.log("Fetched zone");
gentle-diamond-70147
10/08/2019, 11:19 PMpurple-appointment-43233
10/08/2019, 11:20 PM$ node --version
v12.11.1
gentle-diamond-70147
10/08/2019, 11:28 PMpurple-appointment-43233
10/08/2019, 11:28 PMgentle-diamond-70147
10/08/2019, 11:31 PM