AWS IAM documentation change
Summary
Added PowerShell V5 example for retrieving account password policy details
Security assessment
Documents security feature (password policy inspection) but does not indicate any vulnerability being addressed
Diff
diff --git a/IAM/latest/UserGuide/iam_example_iam_GetAccountPasswordPolicy_section.md b/IAM/latest/UserGuide/iam_example_iam_GetAccountPasswordPolicy_section.md index 34c5e7f21..c2716ef1e 100644 --- a//IAM/latest/UserGuide/iam_example_iam_GetAccountPasswordPolicy_section.md +++ b//IAM/latest/UserGuide/iam_example_iam_GetAccountPasswordPolicy_section.md @@ -216,0 +217,28 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example returns details about the password policy for the current account. If no password policy is defined for the account, the command returns a`NoSuchEntity` error.** + + + Get-IAMAccountPasswordPolicy + + +**Output:** + + + AllowUsersToChangePassword : True + ExpirePasswords : True + HardExpiry : False + MaxPasswordAge : 90 + MinimumPasswordLength : 8 + PasswordReusePrevention : 20 + RequireLowercaseCharacters : True + RequireNumbers : True + RequireSymbols : False + RequireUppercaseCharacters : True + + * For API details, see [GetAccountPasswordPolicy](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +