-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamconfig.toml.example
More file actions
45 lines (35 loc) · 979 Bytes
/
Copy pathsamconfig.toml.example
File metadata and controls
45 lines (35 loc) · 979 Bytes
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
# Copy to samconfig.toml and adjust, or use: sam deploy --guided
#
# cp samconfig.toml.example samconfig.toml
version = 0.1
[default.global.parameters]
stack_name = "bedrock-log-filter"
[default.build.parameters]
cached = true
parallel = true
[default.validate.parameters]
lint = true
[default.deploy.parameters]
capabilities = "CAPABILITY_IAM"
confirm_changeset = true
resolve_s3 = true
region = "us-west-2"
# --- Existing Bedrock logging bucket (most common) ---
parameter_overrides = [
"CreateRawLogBucket=false",
"RawLogBucketName=REPLACE_WITH_YOUR_BEDROCK_LOG_BUCKET",
"DestPrefix=shareable",
"LambdaMemorySize=1024",
"LambdaTimeoutSeconds=900",
]
# --- Greenfield: stack creates the raw bucket and S3 trigger ---
# parameter_overrides = [
# "CreateRawLogBucket=true",
# "DestPrefix=shareable",
# ]
[default.package.parameters]
resolve_s3 = true
[default.sync.parameters]
watch = true
[default.local_start_api.parameters]
warm_containers = "EAGER"