We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6683e commit 358f7d4Copy full SHA for 358f7d4
modules/iam-user/main.tf
@@ -16,6 +16,11 @@ resource "aws_iam_user_login_profile" "this" {
16
pgp_key = var.pgp_key
17
password_length = var.password_length
18
password_reset_required = var.password_reset_required
19
+
20
+ # TODO: Remove once https://github.com/hashicorp/terraform-provider-aws/issues/23567 is resolved
21
+ lifecycle {
22
+ ignore_changes = [password_reset_required]
23
+ }
24
}
25
26
resource "aws_iam_access_key" "this" {
0 commit comments