forked from miztiik/my-first-cdk-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdk.json
29 lines (29 loc) · 749 Bytes
/
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
{
"app": "python3 app.py",
"versionReporting": false,
"requireApproval": "never",
"context": {
"owner": "Mystique",
"github_repo_url": "https://github.com/miztiik/my-first-cdk-project",
"github_profile": "https://github.com/miztiik",
"youtube_profile": "https://youtube.com/c/valaxytechnologies",
"envs": {
"dev": {
"region": "us-east-1",
"account": "830058508584"
},
"prod": {
"support-team": "miztiik@github",
"region": "us-east-1",
"account": "830058508584",
"encryption": true,
"kms_arn": "",
"vpc_configs": {
"vpc_cidr": "10.83.0.0/20",
"cidr_mask": 24,
"set_reserve": false
}
}
}
}
}