Pattern: IAM Password policy should have requirement for at least one symbol in the password
Issue: -
IAM account password policies should ensure that passwords content including a symbol.
Resolution: import (.
Example of incorrect code:
resource "aws_iam_account_password_policy" "bad_example" {
# ...
# require_symbols not set
# ...
}
Example of correct code:
resource "aws_iam_account_password_policy" "good_example" {
# ...
require_symbols = true
# ...
}