Skip to content

Commit

Permalink
fix boc:safeguard tags to use space vs comma
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jun 29, 2023
1 parent badebfa commit ea74986
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ This works with the Terraform AWS provider 4.x, released 2022-02.
This will destroy `null_resource.policy_delay` and craete `time_sleep.policy_delay` and `time_sleep.acl_delay`.
These are due to changs in the default S3 bucket which prevents creation of an ACL if the bucket policy is not set first.


* 3.3.10 -- 2023-05-24
- remove tf requirement of >= 0.13 as there are no specific tf things in there

* 3.3.11 -- 2023-06-29
- remove comma in boc:safeguard tag, use space instead
2 changes: 1 addition & 1 deletion common/base_settings.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ locals {
safeguard_tags = sort(distinct(compact(concat([for t in var.data_safeguards : lookup(local._default_safeguard_tags, lower(replace(t, " ", "")), "")], local.add_safeguard_tags))))
add_tags = {
safeguard = {
"exists" = { "boc:safeguard" = join(",", local.safeguard_tags) }
"exists" = { "boc:safeguard" = join(" ", local.safeguard_tags) }
"not_exists" = {}
}
}
Expand Down
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "3.3.10"
_module_version = "3.3.11"
}

0 comments on commit ea74986

Please sign in to comment.