@certenza/aws-cdk-infrastructure-commons 2.0.4 → 2.0.5
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/dist/src/apigateway.js +0 -4
- package/package.json +1 -1
package/dist/src/apigateway.js
CHANGED
|
@@ -86,10 +86,6 @@ const createApiGateway = (scope, apiName, domainName, hostedZoneId, zoneName) =>
|
|
|
86
86
|
})),
|
|
87
87
|
},
|
|
88
88
|
});
|
|
89
|
-
// Add a dependency on the API root to help ensure deployments update
|
|
90
|
-
if (api.deploymentStage) {
|
|
91
|
-
api.deploymentStage.node.addDependency(api.root);
|
|
92
|
-
}
|
|
93
89
|
// Create Route53 A record pointing to the API Gateway
|
|
94
90
|
new route53.ARecord(scope, `${apiName}-AliasRecord`, {
|
|
95
91
|
zone: hostedZone,
|
package/package.json
CHANGED