-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcdk.json
More file actions
37 lines (37 loc) · 990 Bytes
/
cdk.json
File metadata and controls
37 lines (37 loc) · 990 Bytes
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
{
"app": "npx ts-node --prefer-ts-exts bin/app.ts",
"watch": {
"include": ["**"],
"exclude": [
"README.md",
"cdk*.json",
"**/*.d.ts",
"**/*.js",
"tsconfig.json",
"package*.json",
"node_modules",
"photo-wall/node_modules",
"photo-wall/.next"
]
},
"context": {
"@aws-cdk/aws-lambda:recognizeLayerVersion": true,
"@aws-cdk/core:checkSecretUsage": true,
"@aws-cdk/core:target-partitions": ["aws", "aws-cn"],
"domain": {
"name": "wall.example.com",
"hostedZoneId": "ZXXXXXXXXXXXXX",
"hostedZoneName": "example.com",
"certificateArn": "arn:aws:acm:us-east-1:123456789012:certificate/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
},
"telegramGroups": [
{
"groupId": "demo-group",
"chatId": "-1001234567890",
"name": "Demo Photo Wall",
"secretName": "telegram/bot-token/demo-group",
"botUsername": "your_bot_username"
}
]
}
}