Skip to content

Commit

Permalink
v2.1.1: update tags to ref terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jun 14, 2021
1 parent 41b7e06 commit 5320aaf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
* v2.1.0 -- 20210429
- add additional_policies feature
- add pre-commit hooks

* v2.1.1 -- 20210614
- add terraform tags
10 changes: 9 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,18 @@ data "aws_arn" "current" {
resource "aws_iam_user" "audit" {
count = length(var.users)
name = var.users[count.index]
tags = local.tags
tags = merge(
local.base_tags,
local.tags,
)
# tags = {
# "EmailAddress" = var.email_addresses[count.index]
# }


lifecycle {
ignore_changes = [tags["boc:tf_module_version"]]
}
}

#---
Expand Down
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "2.1.0"
_module_version = "2.1.1"
}

0 comments on commit 5320aaf

Please sign in to comment.