We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c9efdef + 6448eaa commit e7a781eCopy full SHA for e7a781e
2 files changed
infra-cdk/lib/backend-stack.ts
@@ -551,6 +551,7 @@ export class BackendStack extends cdk.NestedStack {
551
throttlingRateLimit: 100,
552
throttlingBurstLimit: 200,
553
cachingEnabled: true,
554
+ cacheDataEncrypted: true,
555
cacheClusterEnabled: true,
556
cacheClusterSize: "0.5",
557
cacheTtl: cdk.Duration.minutes(5),
infra-terraform/modules/backend/feedback.tf
@@ -384,6 +384,7 @@ resource "aws_api_gateway_method_settings" "all" {
384
throttling_rate_limit = local.api_throttling_rate_limit
385
throttling_burst_limit = local.api_throttling_burst_limit
386
caching_enabled = true
387
+ cache_data_encrypted = true
388
cache_ttl_in_seconds = local.api_cache_ttl_seconds
389
logging_level = "INFO"
390
metrics_enabled = true
0 commit comments