Skip to content

Commit

Permalink
* 3.0.2 -- 2024-07-26
Browse files Browse the repository at this point in the history
  - ignore status change for access key
  • Loading branch information
badra001 committed Jul 26, 2024
1 parent 9a3e883 commit 1c4b6ac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,6 @@

* 3.0.1 -- 2024-07-17
- add permissions_boundary attribute

* 3.0.2 -- 2024-07-26
- ignore status change for access key
4 changes: 4 additions & 0 deletions access_keys.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ resource "aws_iam_access_key" "iam_access_key_v1" {
pgp_key = local.pgp_key

depends_on = [time_sleep.wait_iam_access_key_v1]

lifecycle {
ignore_changes = [status]
}
}

# this gives a prior key time to be removed. When doing just one key like
Expand Down
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
locals {
_module_name = "aws-iam-user"
_module_version = "3.0.1"
_module_version = "3.0.2"
}

0 comments on commit 1c4b6ac

Please sign in to comment.