Skip to content

AWS SSM Parameter is not encrypted

Description

As a best practice enable encryption for your AWS SSM Parameter to improve data security without making changes to your business or applications.

Code Example

go
resource "aws_ssm_parameter" "aws_ssm_parameter_ok" {
 name            = "sample"
* type            = "SecureString"
 value           = "test"
 description     = "policy test"
 tier            = "Standard"
 allowed_pattern = ".*"
 data_type       = "text"
}

Remediation

Terraform

Rule Details

FieldValue
IDIAC-0468
SeverityLOW
IaC TypeTerraform
FrameworksTerraform
Checkov IDCKV2_AWS_34

References