# aws configure

OUTPUT: 
AWS Access Key ID [None]: TH1$is$0MUC#fuN 
AWS Secret Access Key [None]: iH@vEN01De@W#@T1@mD01ng#ERe
Default region name [None]: us-west-2
Default output format [None]: table


# aws configure --profile jason

# aws iam list-users --profile jason

# aws iam create-user --user-name YoYo --profile jason

# aws iam create-login-profile --user-name YoYo --password P@$$w0rD --profile jason

# aws iam create-access-key --user-name YoYo --profile jason

# aws iam create-group --group-name SuperUsersGroup --profile jason

# aws iam add-user-to-group --user-name YoYo --group-name SuperUsersGroup --profile jason



# vi /tmp/MyPolicy.json

# Add the following content as it is
{
  "Version": "2012-10-17",
  "Statement": [
    {
"Effect": "Allow",
"Action": "*",
"Resource": "*"
    }
  ]
}


# aws iam put-group-policy --user-name YoYo \
--policy-name Admin-Access-All-About-Dogs \
--policy-document file:///tmp/MyPolicy.json \
--profile jason

