Skip to content

Commit

Permalink
Merge pull request #8120 from ministryofjustice/fix/7607-set-insecure…
Browse files Browse the repository at this point in the history
…-values

Switch to insecure_value for nonsensitive values
  • Loading branch information
dms1981 authored Sep 30, 2024
2 parents a97944e + 112af3e commit 72f0013
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions terraform/environments/core-logging/ssm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ resource "aws_ssm_parameter" "cortex_account_id" {
lifecycle {
ignore_changes = [value]
}
provider = aws.modernisation-platform
description = "Account ID for Palo Alto Cortex XSIAM cross-account role."
name = "cortex_account_id"
type = "String"
value = "Placeholder"
tags = local.tags
provider = aws.modernisation-platform
description = "Account ID for Palo Alto Cortex XSIAM cross-account role."
name = "cortex_account_id"
type = "String"
insecure_value = "Placeholder"
tags = local.tags
}

resource "aws_ssm_parameter" "core_logging_bucket_arns" {
Expand All @@ -17,7 +17,7 @@ resource "aws_ssm_parameter" "core_logging_bucket_arns" {
description = "Bucket ARNs in core-logging for Palo Alto Cortex XSIAM."
name = "core_logging_bucket_arns"
type = "String"
value = jsonencode({
insecure_value = jsonencode({
for key in local.cortex_logging_buckets :
key => aws_s3_bucket.logging[key].arn
})
Expand Down

0 comments on commit 72f0013

Please sign in to comment.