-
Notifications
You must be signed in to change notification settings - Fork 0
/
samconfig.toml
34 lines (31 loc) · 1.01 KB
/
samconfig.toml
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
version = 0.1
# Run local API:
# - $ sam build
# - $ sam local start-api
[default.local_start_api.parameters]
region = "eu-central-1"
parameter_overrides = [
"Env=dev",
]
# Deploy to Development environment:
# - $ sam build
# - $ sam deploy --config-env dev --profile {your-aws-profile}
[dev.deploy.parameters]
stack_name = "ede-demo-pokemon-api-dev"
region = "eu-central-1"
s3_bucket = "pokemon-battle-simulator-sam-deploy-s3-bucket" # TODO: Replace with your S3 bucket name
capabilities = "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND CAPABILITY_NAMED_IAM"
parameter_overrides = [
"Env=dev",
]
# Deploy to Production environment:
# - $ sam build
# - $ sam deploy --config-env prod --profile {your-aws-profile}
[prod.deploy.parameters]
stack_name = "ede-demo-pokemon-api-prod"
region = "eu-central-1"
s3_bucket = "pokemon-battle-simulator-sam-deploy-s3-bucket" # TODO: Replace with your S3 bucket name
capabilities = "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND CAPABILITY_NAMED_IAM"
parameter_overrides = [
"Env=prod",
]