Skip to content

Files

Latest commit

 

History

History
31 lines (22 loc) · 546 Bytes

AWS040.md

File metadata and controls

31 lines (22 loc) · 546 Bytes

Pattern: IAM Password policy should have requirement for at least one symbol in the password

Issue: -

Description

IAM account password policies should ensure that passwords content including a symbol.

Resolution: import (.

Examples

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
	# ...
}