AWS IAM documentation change
Summary
Added PowerShell V5 example for configuring account password policies
Security assessment
Documents security feature implementation (password complexity requirements) but doesn't address a specific vulnerability
Diff
diff --git a/IAM/latest/UserGuide/iam_example_iam_UpdateAccountPasswordPolicy_section.md b/IAM/latest/UserGuide/iam_example_iam_UpdateAccountPasswordPolicy_section.md index a28cabc9d..14bca6163 100644 --- a//IAM/latest/UserGuide/iam_example_iam_UpdateAccountPasswordPolicy_section.md +++ b//IAM/latest/UserGuide/iam_example_iam_UpdateAccountPasswordPolicy_section.md @@ -52,0 +53,14 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example updates the password policy for the account with the specified settings. Note that any parameters that are not included in the command are not left unmodified. Instead, they are reset to default values.** + + + Update-IAMAccountPasswordPolicy -AllowUsersToChangePasswords $true -HardExpiry $false -MaxPasswordAge 90 -MinimumPasswordLength 8 -PasswordReusePrevention 20 -RequireLowercaseCharacters $true -RequireNumbers $true -RequireSymbols $true -RequireUppercaseCharacters $true + + + * For API details, see [UpdateAccountPasswordPolicy](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +