-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamconfig.toml
More file actions
63 lines (56 loc) · 1.31 KB
/
samconfig.toml
File metadata and controls
63 lines (56 loc) · 1.31 KB
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
version = 0.1
[default.build.parameters]
cached = true
parallel = true
[default.validate.parameters]
lint = true
[default.deploy.parameters]
capabilities = "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND"
confirm_changeset = true
resolve_s3 = true
s3_prefix = "banking-app"
stack_name = "banking-app"
[default.package.parameters]
resolve_s3 = true
# --- Production Environment ---
[prod]
[prod.global]
[prod.global.parameters]
capabilities = "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND"
s3_prefix = "banking-app-prod"
resolve_s3 = true
stack_name = "banking-app-prod"
region = "eu-west-2"
parameter_overrides=[
"Environment=prod",
"AwsRegion=eu-west-2",
"SesEnabled=true"
]
# --- Development Environment ---
[dev]
[dev.global]
[dev.global.parameters]
capabilities = "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND"
s3_prefix = "banking-app-dev"
resolve_s3 = true
stack_name = "banking-app-dev"
region = "eu-west-2"
parameter_overrides=[
"Environment=dev",
"AwsRegion=eu-west-2",
"SesEnabled=true"
]
# --- Testing Environment ---
[test]
[test.global]
[test.global.parameters]
capabilities = "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND"
s3_prefix = "banking-app-test"
resolve_s3 = true
stack_name = "banking-app-test"
region = "eu-west-2"
parameter_overrides=[
"Environment=test",
"AwsRegion=eu-west-2",
"SesEnabled=false"
]