aws-architect 6.7.52 → 6.7.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/template/make.js
CHANGED
|
@@ -118,10 +118,8 @@ commander
|
|
|
118
118
|
await awsArchitect.validateTemplate(stackTemplate, stackConfiguration);
|
|
119
119
|
if (isMasterBranch) {
|
|
120
120
|
let parameters = {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
hostedZoneId: 'ZHostedZoneID-Route53',
|
|
124
|
-
useRoot: 'true'
|
|
121
|
+
dnsName: 'your-app.example.com',
|
|
122
|
+
hostedZoneId: 'Z_Your_HostedZoneID_Route53'
|
|
125
123
|
};
|
|
126
124
|
await awsArchitect.deployTemplate(stackTemplate, stackConfiguration, parameters);
|
|
127
125
|
} else {
|