Last active
October 24, 2017 19:40
-
-
Save nzoschke/c8217a31f58ceb9e0802 to your computer and use it in GitHub Desktop.
Creating a convox-support IAM User and Login
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ aws iam create-user --user-name convox-support | |
{ | |
"User": { | |
"UserName": "convox-support", | |
"Path": "/", | |
"CreateDate": "2015-08-09T15:16:09.027Z", | |
"UserId": "AIDAIEXRZQYWRHLT6NX6O", | |
"Arn": "arn:aws:iam::901416387788:user/convox-support" | |
} | |
} | |
$ aws iam attach-user-policy --user-name convox-support --policy-arn arn:aws:iam::aws:policy/AdministratorAccess | |
$ aws iam create-login-profile --user-name convox-support --password '&1-3a6u:RA0djs' --password-reset-required | |
{ | |
"LoginProfile": { | |
"UserName": "convox-support", | |
"CreateDate": "2015-08-09T15:23:20.493Z", | |
"PasswordResetRequired": true | |
} | |
} | |
# Now [email protected] can login on https://901416387788.signin.aws.amazon.com/console and set a new password |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ aws iam delete-login-profile --user-name convox-support | |
$ aws iam delete-user --user-name convox-support |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment