-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcdk.json
58 lines (58 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
{
"app": "python app.py",
"watch": {
"include": [
"**"
],
"exclude": [
"README.md",
"cdk*.json",
"requirements*.txt",
"source.bat",
"**/__init__.py",
"python/__pycache__",
"tests"
]
},
"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,
"@aws-cdk-containers/ecs-service-extensions:enableDefaultLogDriver": true,
"@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true,
"@aws-cdk/core:checkSecretUsage": true,
"@aws-cdk/aws-iam:minimizePolicies": true,
"@aws-cdk/core:target-partitions": [
"aws",
"aws-cn"
],
"config": {
"accounts": {
"tooling": {
"account": "24xx",
"region": "sa-east-1"
},
"dev": {
"account": "24xx",
"region": "sa-east-1"
},
"qa": {
"account": "24xx",
"region": "sa-east-1"
},
"prod": {
"account": "24xx",
"region": "sa-east-1"
}
},
"internet_vpc": "vpc-xx",
"development_branch": "main",
"production_branch": "main",
"owner": "wolfgangunger",
"repo": "cdk-codepipeline",
"connection_arn": "arn:aws:codestar-connections:sa-east-1:xxx:connection/2a55ddxxx"
}
}
}