-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsamconfig.toml
61 lines (43 loc) · 1.21 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
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
# More information about the configuration file can be found here:
# https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-config.html
version = 0.1
[staging]
[staging.global.parameters]
stack_name = "sc-platform-pii-lambda-staging"
[staging.build.parameters]
cached = true
parallel = true
[staging.validate.parameters]
lint = true
[staging.deploy.parameters]
capabilities = "CAPABILITY_IAM"
confirm_changeset = true
resolve_s3 = true
[staging.package.parameters]
resolve_s3 = true
[staging.sync.parameters]
watch = true
[staging.local_start_api.parameters]
warm_containers = "EAGER"
[staging.local_start_lambda.parameters]
warm_containers = "EAGER"
[production]
[production.global.parameters]
stack_name = "sc-platform-pii-lambda-production"
[production.build.parameters]
cached = true
parallel = true
[production.validate.parameters]
lint = true
[production.deploy.parameters]
capabilities = "CAPABILITY_IAM"
confirm_changeset = true
resolve_s3 = true
[production.package.parameters]
resolve_s3 = true
[production.sync.parameters]
watch = true
[production.local_start_api.parameters]
warm_containers = "EAGER"
[production.local_start_lambda.parameters]
warm_containers = "EAGER"