-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcdk.json
36 lines (36 loc) · 1.21 KB
/
cdk.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"app": "npx ts-node --prefer-ts-exts bin/cdk-dns-subdomains.ts",
"watch": {
"include": ["**"],
"exclude": ["README.md", "cdk*.json", "**/*.d.ts", "**/*.js", "tsconfig.json", "package*.json", "yarn.lock", "node_modules", "test"]
},
"context": {
"@aws-cdk/aws-apigateway:usagePlanKeyOrderInsensitiveId": true,
"@aws-cdk/core:stackRelativeExports": true,
"@aws-cdk/aws-rds:lowercaseDbIdentifier": true,
"@aws-cdk/aws-lambda:recognizeVersionProps": true,
"@aws-cdk/aws-cloudfront:defaultSecurityPolicyTLSv1.2_2021": true,
"environments": {
"root": {
"domain": "<ROOT_DOMAIN e.g. ilovemylocalfarmer.com>",
"account": "<ACCOUNT_NUMBER>",
"region": "<REGION>"
},
"dev": {
"domain": "<DEV_SUB_DOMAIN e.g. dev.ilovemylocalfarmer.com>",
"account": "<ACCOUNT_NUMBER>",
"region": "<REGION>"
},
"staging": {
"domain": "<DEV_SUB_DOMAIN e.g. staging.ilovemylocalfarmer.com>",
"account": "<ACCOUNT_NUMBER>",
"region": "<REGION>"
},
"prod": {
"domain": "<DEV_SUB_DOMAIN e.g. prod.ilovemylocalfarmer.com>",
"account": "<ACCOUNT_NUMBER>",
"region": "<REGION>"
}
}
}
}