Skip to content

Commit cf4bd43

Browse files
committed
feat: add false tolerance in deploy
1 parent 18d362f commit cf4bd43

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

source/infrastructure/cdk.json

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
"output": "cdk.out",
44
"build": "npx projen bundle",
55
"watch": {
6-
"include": ["src/**/*.ts", "test/**/*.ts"],
6+
"include": [
7+
"src/**/*.ts",
8+
"test/**/*.ts"
9+
],
710
"exclude": [
811
"README.md",
912
"cdk*.json",
@@ -16,7 +19,11 @@
1619
]
1720
},
1821
"context": {
19-
"@aws-cdk/customresources:installLatestAwsSdkDefault": false
22+
"@aws-cdk/customresources:installLatestAwsSdkDefault": false,
23+
"@aws-cdk/core:retryOptions": {
24+
"maxAttempts": 3,
25+
"backoffRate": 1.5
26+
}
2027
},
2128
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
22-
}
29+
}

0 commit comments

Comments
 (0)