-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsamconfig.yaml
38 lines (38 loc) · 962 Bytes
/
samconfig.yaml
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
version: 0.1
prod:
build:
parameters:
template: ./template.yaml
deploy:
parameters:
region: us-east-1
stack_name: GameKnightsEventsAPI
capabilities: CAPABILITY_NAMED_IAM
s3_bucket: cp-sam-deploy-east1
parameter_overrides: "Mode=prod"
tags: Owner=EventsAPI
dev:
build:
parameters:
template: ./template.yaml
deploy:
parameters:
region: us-east-1
stack_name: DEVGameKnightsEventsAPI
capabilities: CAPABILITY_NAMED_IAM
s3_bucket: cp-sam-deploy-east1
parameter_overrides: "Mode=dev"
tags: Owner=DevEventsAPI
# tags: foo=bar hello=world
sandbox:
build:
parameters:
template: ./template.yaml
deploy:
parameters:
region: us-east-1
stack_name: SandboxGameKnightsEventsAPI
capabilities: CAPABILITY_NAMED_IAM
s3_bucket: cp-sam-deploy-east1
parameter_overrides: "Mode=sandbox"
tags: Owner=SandboxEventsAPI