-
Notifications
You must be signed in to change notification settings - Fork 2
/
cdk.json
46 lines (46 loc) · 1.35 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
{
"app": "python3 app.py",
"context": {
"dev": {
"App": "magento-webshop",
"Environment": "dev",
"GlobalTags": {
"App": "magento-webshop-dev",
"SupportEmail": "me@mjraadi.dev"
},
"Parameters": {
"VPC": {
"CIDR": "10.83.0.0/20",
"CIDRMask": 24
}
}
},
"prod": {
"App": "magento-webshop",
"Environment": "prod",
"GlobalTags": {
"App": "magento-webshop-prod",
"SupportEmail": "me@mjraadi.dev"
},
"Parameters": {
"VPC": {
"CIDR": "10.83.0.0/20",
"CIDRMask": 24
}
}
},
"@aws-cdk/aws-apigateway:usagePlanKeyOrderInsensitiveId": true,
"@aws-cdk/core:enableStackNameDuplicates": true,
"aws-cdk:enableDiffNoFail": true,
"@aws-cdk/core:stackRelativeExports": true,
"@aws-cdk/aws-ecr-assets:dockerIgnoreSupport": true,
"@aws-cdk/aws-secretsmanager:parseOwnedSecretName": true,
"@aws-cdk/aws-kms:defaultKeyPolicies": true,
"@aws-cdk/aws-s3:grantWriteWithoutAcl": true,
"@aws-cdk/aws-ecs-patterns:removeDefaultDesiredCount": true,
"@aws-cdk/aws-rds:lowercaseDbIdentifier": true,
"@aws-cdk/aws-efs:defaultEncryptionAtRest": true,
"@aws-cdk/aws-lambda:recognizeVersionProps": true,
"@aws-cdk/aws-cloudfront:defaultSecurityPolicyTLSv1.2_2021": true
}
}