Post

AWS CLI useful tips & tricks

Install AWS CLI

1
2
3
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install

See the account you are working on

1
2
3
ubuntu@ip-172-31-25-204:~$ aws sts get-caller-identity --query Account --output text
06XXXXXXXXXX
ubuntu@ip-172-31-25-204:~$

Set AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY

I always forget the name of these envars =P

1
export AWS_ACCESS_KEY_ID=
1
export AWS_SECRET_ACCESS_KEY=

Example:

1
2
3
4
5
6
7
8
9
$ export AWS_ACCESS_KEY_ID=AKI...
$ export AWS_SECRET_ACCESS_KEY=bQv...
$ aws sts get-caller-identity
{
    "UserId": "AID...F",
    "Account": "767397664936",
    "Arn": "arn:aws:iam::767397664936:user/cloud_user"
}
$

Resources

This post is licensed under CC BY 4.0 by the author.