Skip to content

Commit

Permalink
fix map() to {}
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Sep 14, 2022
1 parent ebe2ba2 commit 13767f8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,7 @@ This works with the Terraform AWS provider 3.x.
* 2.5.0 -- 2022-07-15
- kms_key
- add variable multi_region

* 2.5.1 -- 2022-09-14
- common/
- fix map() to {}
2 changes: 1 addition & 1 deletion common/kms.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "aws_kms_key" "key" {
local.base_tags,
var.tags,
local.enforced_tags,
map("Name", local.kms_key_name)
{ "Name" = local.kms_key_name }
)
}

Expand Down
2 changes: 1 addition & 1 deletion common/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ resource "aws_s3_bucket" "this" {
local.base_tags,
var.tags,
local.enforced_tags,
map("Name", local.bucket_name)
{ "Name" = local.bucket_name }
)
}

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 = "2.5.0"
_module_version = "2.5.1"
}

0 comments on commit 13767f8

Please sign in to comment.