Skip to content

Commit

Permalink
Merge pull request #1 from Skardian/fix-password-reuse
Browse files Browse the repository at this point in the history
Fix wrong password_reuse_prevention variable
  • Loading branch information
derBroBro authored Sep 20, 2017
2 parents 5b01a97 + 4988662 commit 8aea8f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iam_passwordpolicy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resource "aws_iam_account_password_policy" "strict" {
require_numbers = true
require_symbols = true
allow_users_to_change_password = true
password_reuse_prevention = "${var.password_min_length}"
password_reuse_prevention = "${var.password_reuse_prevention}"
hard_expiry = "${var.password_hard_expiry}"
max_password_age = "${var.password_max_age}"
}

0 comments on commit 8aea8f5

Please sign in to comment.