Skip to content

Commit

Permalink
Added parameter to store XSIAM endpoint address
Browse files Browse the repository at this point in the history
  • Loading branch information
dms1981 committed Oct 8, 2024
1 parent 818a9b8 commit 89e7c66
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions terraform/environments/core-logging/ssm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@ resource "aws_ssm_parameter" "cortex_account_id" {
tags = local.tags
}

resource "aws_ssm_parameter" "cortex_endpoint address" {
#checkov:skip=CKV2_AWS_34: "Parameter is not sensitive; endpoint is publicly resolvable."
lifecycle {
ignore_changes = [insecure_value]
}
provider = aws.modernisation-platform
description = "Endpoint Address for Palo Alto Cortex XSIAM cross-account role."
name = "cortex_xsiam_endpoint"
type = "String"
insecure_value = "Placeholder"
tags = local.tags
}

resource "aws_ssm_parameter" "core_logging_bucket_arns" {
#checkov:skip=CKV2_AWS_34: "Parameter is not sensitive; bucket ARNs are stored here for programmatic retrieval."
provider = aws.modernisation-platform
Expand Down

0 comments on commit 89e7c66

Please sign in to comment.