We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cab3849 commit 2d7ecfdCopy full SHA for 2d7ecfd
1 file changed
make.js
@@ -88,7 +88,7 @@ commander
88
const route53Client = new Route53Client({});
89
const command = new ListHostedZonesByNameCommand({ DNSName: parameters.hostedName });
90
const response = await route53Client.send(command);
91
- const hostedZoneId = response.HostedZones[0].Id;
+ const hostedZoneId = response.HostedZones[0].Id.replace('/hostedzone/', '');
92
parameters.hostedZoneId = hostedZoneId;
93
await awsArchitect.deployTemplate(stackTemplate, stackConfiguration, parameters);
94
}
0 commit comments