githubEdit

AWS Access

AWS Console (GUI)

1) Grant a user access to the AWS Console

aws iam create-login-profile --user USERNAME --password 'PASSWORD123'

2) Change the user's password

aws iam update-login-profile --user USER --password 'PASSWORD321'

3) Check for password policy

aws iam get-account-password-policy

Access Keys

1) Create Access Key

 aws iam create-access-key --user-name USERNAME

2) Request Short-term keys (STS)

aws sts get-session-token

3) Get information about an Access Key

4) Get ECS Container credentials (CloudShell)

5) Get temporary credentials (CloudShell)

6) Disable AWS Access Key

7) Reenable Access Key

8) Delete AWS Access Key

Last updated