Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/mysql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ resource "random_password" "user-password" {

lifecycle {
ignore_changes = [
min_lower, min_upper, min_numeric
min_lower, min_upper, min_numeric, special, min_special, length
]
}
}
Expand All @@ -262,7 +262,7 @@ resource "random_password" "additional_passwords" {

lifecycle {
ignore_changes = [
min_lower, min_upper, min_numeric
min_lower, min_upper, min_numeric, special, min_special, length
]
}
}
Expand Down
Loading