We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d383ada commit 912a633Copy full SHA for 912a633
infra/modules/api-gateway/api-gateway.tf
@@ -27,6 +27,7 @@ resource "aws_api_gateway_deployment" "api_deployment" {
27
}
28
29
resource "aws_api_gateway_stage" "api_stage" {
30
+ # checkov:skip=CKV2_AWS_29:WAF not needed for non-prod use
31
deployment_id = aws_api_gateway_deployment.api_deployment.id
32
rest_api_id = aws_api_gateway_rest_api.api_gateway.id
33
stage_name = "dev"
@@ -66,9 +67,7 @@ resource "aws_api_gateway_method_settings" "api_gateway_method_settings" {
66
67
method_path = "*/*"
68
69
settings {
- caching_enabled = true
70
- cache_ttl_in_seconds = "3600" # 1 hour
71
-
+ caching_enabled = false
72
metrics_enabled = true
73
logging_level = "ERROR"
74
0 commit comments