Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions infra-cdk/lib/backend-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,7 @@ export class BackendStack extends cdk.NestedStack {
throttlingRateLimit: 100,
throttlingBurstLimit: 200,
cachingEnabled: true,
cacheDataEncrypted: true,
cacheClusterEnabled: true,
cacheClusterSize: "0.5",
cacheTtl: cdk.Duration.minutes(5),
Expand Down
1 change: 1 addition & 0 deletions infra-terraform/modules/backend/feedback.tf
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ resource "aws_api_gateway_method_settings" "all" {
throttling_rate_limit = local.api_throttling_rate_limit
throttling_burst_limit = local.api_throttling_burst_limit
caching_enabled = true
cache_data_encrypted = true
cache_ttl_in_seconds = local.api_cache_ttl_seconds
logging_level = "INFO"
metrics_enabled = true
Expand Down
Loading