-
Notifications
You must be signed in to change notification settings - Fork 1
/
cdk.context.template.json
47 lines (47 loc) · 1.26 KB
/
cdk.context.template.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
{
"stackName": "STACKNAME",
"zoneName": "YOUR.DOMAIN",
"certificateDomainName": "YOUR.DOMAIN",
"certificateAlternativeDomainName": "*.YOUR.DOMAIN",
"mxRecords": [],
"web": {
"githubTokenSecretArn": "ARN_FOR_GITHUB_SECRET_IN_SECRETS_MANAGER",
"githubTokenFieldName": "GITHUB_SECRET_FIELD_NAME",
"githubOwner": "GITHUB_OWNER",
"githubRepo": "GITHUB_REPO",
"githubBranch": "GITHUB_BRANCH",
"stages": {
"staging": {
"hostName": "STAGING.YOUR.DOMAIN",
"staticAssetsHostName": "STATIC_STAGING.YOUR.DOMAIN",
"priority": 1
},
"production": {
"hostName": "YOUR.DOMAIN",
"staticAssetsHostName": "STATIC.YOUR.DOMAIN",
"priority": 2,
"cname": {
"recordName": "www",
"priority": 3
}
}
}
},
"api": {
"githubTokenSecretArn": "ARN_FOR_GITHUB_SECRET_IN_SECRETS_MANAGER",
"githubTokenFieldName": "GITHUB_SECRET_FIELD_NAME",
"githubOwner": "GITHUB_OWNER",
"githubRepo": "GITHUB_REPO",
"githubBranch": "GITHUB_BRANCH",
"stages": {
"staging": {
"hostName": "API-STAGING.YOUR.DOMAIN",
"priority": 4
},
"production": {
"hostName": "API.YOUR.DOMAIN",
"priority": 5
}
}
}
}