Ensure AWS DLM-cross region schedules are encrypted
Error: AWS DLM-cross region schedules are not encrypted
Bridgecrew Policy ID: BC_AWS_GENERAL_136
Checkov Check ID: CKV_AWS_255
Severity: LOW
AWS DLM-cross region schedules are not encrypted
Description
As a best practice enable encryption for your AWS DLM-cross region schedules to improve data security without making changes to your business or applications.
Fix - Runtime
Fix - Buildtime
Terraform
resource "aws_cloudfront_response_headers_policy" "pass" {
name = "test"
security_headers_config {
strict_transport_security {
access_control_max_age_sec = 31536000
include_subdomains = true
override = true
preload = true
}
}
}
Updated 9 months ago