-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
58 lines (58 loc) · 1.72 KB
/
config.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
{
"cdk_app": {
"app_name": "MyApp",
"app_stage": "dev-us-east-1",
"variables": {
"lambda_layers": [
{
"layerVersionName": "MyAppExampleUtils",
"description": "Utilities for working with data and AWS services",
"layerPath": "../../layers/MyAppUtils/python"
}
],
"key_pair": "my-app-example-key-pair",
"github_personal_access_token_secret_arn": "<arn>"
},
"tags": {
"org": "organization",
"app": "my-app"
}
},
"cdk_pipeline": {
"organization": "organization",
"repository_owner": "organization",
"repository_name": "my-app",
"branch": "main",
"build_environment": {
"account_id": "***************",
"region": "us-east-1"
},
"deployment_environments": {
"development": [
{
"name": "dev-us-east-1",
"env": {
"account_id": "***************",
"region": "us-east-1"
}
}
],
"production": [
{
"name": "prod-us-east-1",
"env": {
"account_id": "***************",
"region": "us-east-1"
}
},
{
"name": "prod-us-west-1",
"env": {
"account_id": "***************",
"region": "us-west-1"
}
}
]
}
}
}