AWS IAM documentation change
Summary
Added PowerShell V5 example for listing all IAM groups
Security assessment
Documents group enumeration capabilities (security auditing feature) without security incident context
Diff
diff --git a/IAM/latest/UserGuide/iam_example_iam_ListGroups_section.md b/IAM/latest/UserGuide/iam_example_iam_ListGroups_section.md index 9bc64bf38..a2a709e60 100644 --- a//IAM/latest/UserGuide/iam_example_iam_ListGroups_section.md +++ b//IAM/latest/UserGuide/iam_example_iam_ListGroups_section.md @@ -266,0 +267,35 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example returns a collection of all the IAM groups defined in the current AWS account.** + + + Get-IAMGroupList + + +**Output:** + + + Arn : arn:aws:iam::123456789012:group/Administrators + CreateDate : 10/20/2014 10:06:24 AM + GroupId : 6WCH4TRY3KIHIEXAMPLE1 + GroupName : Administrators + Path : / + + Arn : arn:aws:iam::123456789012:group/Developers + CreateDate : 12/10/2014 3:38:55 PM + GroupId : ZU2EOWMK6WBZOEXAMPLE2 + GroupName : Developers + Path : / + + Arn : arn:aws:iam::123456789012:group/Testers + CreateDate : 12/10/2014 3:39:11 PM + GroupId : RHNZZGQJ7QHMAEXAMPLE3 + GroupName : Testers + Path : / + + * For API details, see [ListGroups](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +