Skip to content

Commit d5e0abf

Browse files
fix(core): Updating CDK version for CreateHostedZone custom resource (#416)
* fix(core): Moving Interface endpoints creation to Phase 3 * increasing number of interface endpoints into one stack * adding limit check regional * adding limits check before creation * prettier * Adding random sleep and regional limits * Sleep 1 to 10 random seconds after creation of the vpc endpoint * using custom resource to create private hosted zone * prettier * remove using custom resource for Private Hosted Zone * limits fix * Fixing tests * Fixing review * Fixing stacks validation * Updating CDK version for CreateHostedZone custom resource
1 parent 252ac6e commit d5e0abf

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

src/lib/custom-resources/cdk-associate-hosted-zones/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
### Currently this module is not being used ###
2+
13
# Associate Hosted Zones to VPC
24

35
This is a custom resource to associate vpc to Hosted Zone Used `createVPCAssociationAuthorization`, `associateVPCWithHostedZone`, `deleteVPCAssociationAuthorization` and `deleteVPCAssociationAuthorization` API calls.

src/lib/custom-resources/cdk-associate-hosted-zones/cdk/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ export interface AssociateHostedZonesProps {
1616
roleArn: string;
1717
}
1818

19+
/*******************************************
20+
* Currently this module is not being used *
21+
*******************************************/
22+
1923
export interface AssociateHostedZonesRuntimeProps extends Omit<AssociateHostedZonesProps, 'roleArn'> {}
2024
/**
2125
* Custom resource that will create SSM Document.

src/lib/custom-resources/cdk-create-hosted-zone/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@aws-accelerator/custom-resource-create-hosted-zone",
33
"peerDependencies": {
4-
"@aws-cdk/aws-iam": "^1.46.0",
5-
"@aws-cdk/core": "^1.46.0"
4+
"@aws-cdk/aws-iam": "^1.66.0",
5+
"@aws-cdk/core": "^1.66.0"
66
},
77
"main": "cdk/index.ts",
88
"private": true,
99
"version": "0.0.1",
1010
"dependencies": {
11-
"@aws-cdk/aws-iam": "1.46.0",
12-
"@aws-cdk/core": "1.46.0",
13-
"@aws-cdk/aws-lambda": "1.46.0"
11+
"@aws-cdk/aws-iam": "1.66.0",
12+
"@aws-cdk/core": "1.66.0",
13+
"@aws-cdk/aws-lambda": "1.66.0"
1414
},
1515
"devDependencies": {
1616
"tslint": "6.1.0",

0 commit comments

Comments
 (0)