mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 11:06:00 +02:00
aws iam: add page (#4662)
This commit is contained in:
parent
6b248c8b6e
commit
00ddf1c66d
1 changed files with 36 additions and 0 deletions
36
pages/common/aws-iam.md
Normal file
36
pages/common/aws-iam.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# aws iam
|
||||
|
||||
> CLI for AWS IAM.
|
||||
> More information: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/iam/index.html>.
|
||||
|
||||
- Show `aws iam` help page (including all available iam commands):
|
||||
|
||||
`aws iam help`
|
||||
|
||||
- List users:
|
||||
|
||||
`aws iam list-users`
|
||||
|
||||
- List policies:
|
||||
|
||||
`aws iam list-policies`
|
||||
|
||||
- List groups:
|
||||
|
||||
`aws iam list-groups`
|
||||
|
||||
- Get users in a group:
|
||||
|
||||
`aws iam get-group --group-name {{group_name}}`
|
||||
|
||||
- Describe an IAM policy:
|
||||
|
||||
`aws iam get-policy --policy-arn arn:aws:iam::aws:policy/{{policy_name}}`
|
||||
|
||||
- List access keys:
|
||||
|
||||
`aws iam list-access-keys`
|
||||
|
||||
- List access keys for a specific user:
|
||||
|
||||
`aws iam list-access-keys --user-name {{user_name}}`
|
Loading…
Add table
Reference in a new issue