Skip to content

Commit

Permalink
Merge pull request lgallard#29 from lgallard/release-ignore-secret_id
Browse files Browse the repository at this point in the history
Add lifecycle ignore for `secret_id` in changelog
  • Loading branch information
lgallard authored Jan 12, 2023
2 parents 20bc510 + 2121e01 commit 37fa067
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.6.2 (January 11, 2023)

FIXES:

* Add lifecycle ignore for `secret_id` (thanks @jmonte-sph)

## 0.6.1 (October 19, 2022)

FIXES:
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ resource "aws_secretsmanager_secret_rotation" "rsm-sr" {
rotation_rules {
automatically_after_days = lookup(each.value, "automatically_after_days", var.automatically_after_days)
}
depends_on = [aws_secretsmanager_secret.rsm]
depends_on = [aws_secretsmanager_secret.rsm]

lifecycle {
ignore_changes = [
secret_id,
Expand Down

0 comments on commit 37fa067

Please sign in to comment.