Skip to content

Commit ef6a542

Browse files
committed
NRL-853 fix tags to match policy
1 parent bd0ce6b commit ef6a542

File tree

3 files changed

+3
-3
lines changed
  • terraform/account-wide-infrastructure/modules

3 files changed

+3
-3
lines changed

terraform/account-wide-infrastructure/modules/permissions-store-bucket/s3.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resource "aws_s3_bucket" "authorization-store" {
55
tags = var.enable_backups ? {
66
Name = "authorization store"
77
Environment = "${var.name_prefix}"
8-
NHSE-Enable-Backup = "daily"
8+
NHSE-Enable-Backup = "true"
99
} : {
1010
Name = "authorization store"
1111
Environment = "${var.name_prefix}"

terraform/account-wide-infrastructure/modules/pointers-table/dynamodb.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ resource "aws_dynamodb_table" "pointers" {
5252
enabled = var.enable_pitr
5353
}
5454

55-
tags = var.enable_backups ? { NHSE-Enable-Backup = "daily" } : {}
55+
tags = var.enable_backups ? { NHSE-Enable-Backup = "true" } : {}
5656
}

terraform/account-wide-infrastructure/modules/truststore-bucket/s3.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
resource "aws_s3_bucket" "api_truststore" {
22
bucket = "${var.name_prefix}-api-truststore"
33
force_destroy = var.enable_bucket_force_destroy
4-
tags = var.enable_backups ? { NHSE-Enable-Backup = "daily" } : {}
4+
tags = var.enable_backups ? { NHSE-Enable-Backup = "true" } : {}
55
}
66

77
resource "aws_s3_bucket_policy" "api_truststore_bucket_policy" {

0 commit comments

Comments
 (0)