namespace | description | description-source | categories | language | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
aws |
The AWS Command Line Interface (CLI) is a unified tool to manage your AWS services. With just one tool to download and configure, you can control multiple AWS services from the command line and automate them through scripts. |
|
en |
$ guix package -i awscli
You may optionally configure some defaults:
$ aws configure
AWS Access Key ID [None]:
AWS Secret Access Key [None]:
Default region name [None]: eu-central-1
Default output format [None]: json
The result will be stored at ~/.aws
.
Optionally, you may store some credentials for easier access at ~/.aws/credentials
:
[default]
aws_access_key_id=AKDAIOSFAQNN7EXAMPLE
aws_secret_access_key=wJalrXUtnFHDI/K7MDENG/bPxRfiUYEXAMPLEKEY
[someunixsite.com]
aws_access_key_id=OPDAIOSFAQNN7EXAMPEA
aws_secret_access_key=wkalrXUtnFHDI/K7MDENG/bPxRfiUYEXAMPLEKIO
For most CLI command you can simply append the profile name:
aws ... -profile someunixsite.com
Or set it via ENV:
AWS_PROFILE=someunixsite.com