-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdk.json
49 lines (49 loc) · 1.11 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"app": "npx ts-node --prefer-ts-exts Main.ts",
"watch": {
"include": ["**"],
"exclude": [
"README.md",
"cdk*.json",
"**/*.d.ts",
"**/*.js",
"tsconfig.json",
"package*.json",
"yarn.lock",
"node_modules",
"test"
]
},
"context": {
"dev": {
"Product": "AccessLogs",
"AWSAccountID": "123456789100",
"AWSRegion": "us-east-1",
"Environment": "Dev",
"Version": "v1.0.0",
"Team": "WebPlatform",
"ElbAccountId": "127311923021",
"LogRetentionDays": 30
},
"preprod": {
"Product": "AccessLogs",
"AWSAccountID": "123456789101",
"AWSRegion": "us-east-1",
"Environment": "Staging",
"Version": "v1.0.0",
"Team": "WebPlatform",
"ElbAccountId": "127311923021",
"LogRetentionDays": 30
},
"prod": {
"Product": "AccessLogs",
"AWSAccountID": "123456789102",
"AWSRegion": "us-east-1",
"Environment": "Prod",
"Version": "v1.0.0",
"Team": "WebPlatform",
"ElbAccountId": "127311923021",
"LogRetentionDays": 90
}
}
}