Skip to content

Commit

Permalink
Merge pull request #4272 from ministryofjustice/NIT-981-delius-db-cre…
Browse files Browse the repository at this point in the history
…ate-backup-vault-in-delius-core-mp

NIT-981 deploy Oracle backup vault to all envs
  • Loading branch information
andrewmooreio authored Dec 8, 2023
2 parents b69287e + 8279a02 commit b216ce0
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
resource "aws_backup_vault" "oracle_backup_vault" {
name = "${var.env_name}-oracle-backup-vault"
kms_key_arn = var.account_config.kms_keys.general_shared
tags = merge(
var.tags,
{
"Name" = "${var.env_name}-oracle-backup-vault"
},
)
}

0 comments on commit b216ce0

Please sign in to comment.