Skip to content

Commit

Permalink
Merge pull request #6505 from ministryofjustice/add-xsiam-secrets
Browse files Browse the repository at this point in the history
New Secret for XSIAM Endpoints & Keys
  • Loading branch information
mikereiddigital authored Mar 18, 2024
2 parents 8850adc + 0daf480 commit fb769ef
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions terraform/modernisation-platform-account/secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,18 @@ data "aws_secretsmanager_secret_version" "circleci" {
secret_id = aws_secretsmanager_secret.circleci.id
}

# Secrets for the XIAM data transfers. Note that the secrets contained in here are provided by Technology Services and so cannot be rotated unless initiated by them.
# Secrets should be manually set in the console.

resource "aws_secretsmanager_secret" "xsiam_secrets" {
# checkov:skip=CKV2_AWS_57:Auto rotation not possible
name = "xsiam_secrets"
description = "Secret that holds the preprod & prod XSIAM endpoint values & keys for the firewall inspection & vpc flow log transfers"
kms_key_id = aws_kms_key.secrets_key.id
tags = local.tags
replica {
region = local.replica_region
}
}


0 comments on commit fb769ef

Please sign in to comment.