-
Notifications
You must be signed in to change notification settings - Fork 7
/
cdk.json
86 lines (86 loc) · 2.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"app": "npx ts-node -P tsconfig.json --prefer-ts-exts src/integ.ts",
"context": {
"@aws-cdk/aws-apigateway:usagePlanKeyOrderInsensitiveId": true,
"@aws-cdk/core:enablePartitionLiterals": true,
"@aws-cdk/aws-events:eventsTargetQueueSameAccount": true,
"@aws-cdk/aws-iam:standardizedServicePrincipals": true,
"@aws-cdk/aws-ecs:disableExplicitDeploymentControllerForCircuitBreaker": true,
"@aws-cdk/aws-iam:importedRoleStackSafeDefaultPolicyName": true,
"@aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy": true,
"@aws-cdk/aws-route53-patters:useFargateAlb": true,
"@aws-cdk/customresources:installLatestAwsSdkDefault": false,
"aws-cdk:enableDiffNoFail": true,
"vpc-provider:account=1234567890:filter.tag:Name=default:region=us-east-1:returnAsymmetricSubnets=true": {
"vpcId": "vpc-1234567890abcdef0",
"vpcCidrBlock": "172.31.0.0/16",
"subnetGroups": [
{
"name": "Public",
"type": "Public",
"subnets": [
{
"subnetId": "subnet-1234567890abcdef0",
"cidr": "172.31.0.0/20",
"availabilityZone": "us-east-1a",
"routeTableId": "rtb-1234567890abcdef0"
},
{
"subnetId": "subnet-1234567890abcdef1",
"cidr": "172.31.16.0/20",
"availabilityZone": "us-east-1b",
"routeTableId": "rtb-1234567890abcdef0"
},
{
"subnetId": "subnet-1234567890abcdef2",
"cidr": "172.31.32.0/20",
"availabilityZone": "us-east-1c",
"routeTableId": "rtb-1234567890abcdef0"
}
]
}
]
},
"availability-zones:account=1234567890:region=us-east-1": [
"us-east-1a",
"us-east-1b",
"us-east-1c"
],
"hosted-zone:account=1234567890:domainName=sallaman.people.aws.dev:region=us-east-1": {
"Id": "/hostedzone/MOCKZ3AMJ8IL4",
"Name": "sallaman.people.aws.dev."
},
"enablePrivateLink": "true",
"createEFS": "no",
"useEFS": "no",
"useFSX": "yes",
"ec2Cluster": "yes",
"taskCpu": 1024,
"taskMem": 4096,
"phpMemoryLimit": "3G",
"magentoMinTasks": 10,
"magentoMaxTasks": 100,
"route53_domain_zone": "sallaman.people.aws.dev",
"magento_admin_task": "yes",
"magento_admin_task_debug": "no"
},
"output": "cdk.out",
"build": "npx projen bundle",
"watch": {
"include": [
"src/**/*.ts",
"test/**/*.ts"
],
"exclude": [
"README.md",
"cdk*.json",
"**/*.d.ts",
"**/*.js",
"tsconfig.json",
"package*.json",
"yarn.lock",
"node_modules"
]
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}