Help improve this page
Want to contribute to this user guide? Choose the Edit this page on GitHub link that is located in the right pane of every page. Your contributions will help make our user guide better for everyone.
Set up Amazon CLI
The Amazon CLI
To create an access key
-
Sign into the Amazon Web Services Management Console
. -
For single-user or multiple-user accounts:
-
Single-user account –:: In the top right, choose your Amazon user name to open the navigation menu. For example, choose
webadmin
. -
Multiple-user account –:: Choose IAM from the list of services. From the IAM Dashboard, select Users, and choose the name of the user.
-
-
Choose Security credentials.
-
Under Access keys, choose Create access key.
-
Choose Command Line Interface (CLI), then choose Next.
-
Choose Create access key.
-
Choose Download .csv file.
To configure the Amazon CLI
After installing the Amazon CLI, do the following steps to configure it. For more information, see Configure the Amazon CLI in the Amazon Command Line Interface User Guide.
-
In a terminal window, enter the following command:
aws configure
Optionally, you can configure a named profile, such as
--profile cluster-admin
. If you configure a named profile in the Amazon CLI, you must always pass this flag in subsequent commands. -
Enter your Amazon credentials. For example:
Access Key ID [None]: AKIAIOSFODNN7EXAMPLE Secret Access Key [None]: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY Default region name [None]: region-code Default output format [None]: json
To get a security token
If needed, run the following command to get a new security token for the Amazon CLI. For more information, see get-session-token in the Amazon CLI Command Reference.
By default, the token is valid for 15 minutes. To change the default session timeout, pass the --duration-seconds
flag. For example:
aws sts get-session-token --duration-seconds 3600
This command returns the temporary security credentials for an Amazon CLI session. You should see the following response output:
{ "Credentials": { "AccessKeyId": "ASIA5FTRU3LOEXAMPLE", "SecretAccessKey": "JnKgvwfqUD9mNsPoi9IbxAYEXAMPLE", "SessionToken": "VERYLONGSESSIONTOKENSTRING", "Expiration": "2023-02-17T03:14:24+00:00" } }
To verify the user identity
If needed, run the following command to verify the Amazon credentials for your IAM user identity (such as ClusterAdmin
) for the terminal session.
aws sts get-caller-identity
This command returns the Amazon Resource Name (ARN) of the IAM entity that’s configured for the Amazon CLI. You should see the following example response output:
{ "UserId": "AKIAIOSFODNN7EXAMPLE", "Account": "01234567890", "Arn": "arn:aws-cn:iam::01234567890:user/ClusterAdmin" }