Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed Aug 25, 2024
1 parent 3511ad3 commit 83eca3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ssm_parameter.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssm_parameter
resource "aws_ssm_parameter" "rds_secret_arn" {

Check failure on line 2 in ssm_parameter.tf

View workflow job for this annotation

GitHub Actions / scan

CKV_AWS_337: "Ensure SSM parameters are using KMS CMK"

Check failure on line 2 in ssm_parameter.tf

View workflow job for this annotation

GitHub Actions / scan

CKV_AWS_337: "Ensure SSM parameters are using KMS CMK"
name = "/${var.name}/rds-password-arn"
type = "SecureString"
value = aws_db_instance.postgresql.master_user_secret[0].secret_arn
name = "/${var.name}/rds-password-arn"
type = "SecureString"
value = aws_db_instance.postgresql.master_user_secret[0].secret_arn
}
#Create a policy to read from the specific parameter store
#https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_policy
Expand Down

0 comments on commit 83eca3f

Please sign in to comment.