AWS CLI: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with "<syntaxhighlight lang="bash"> wget -cq https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip -P ${HOME}/Downloads unzip -q ${HOME}/Downloads/awscli-exe-linux-x86_64.zip -d ${HOME}/Downloads/ rm -rf ${HOME}/Downloads/awscli-exe-linux-x86_64.zip sudo ${HOME}/Downloads/aws/install rm -rf ${HOME}/Downloads/aws </syntaxhighlight> ==Playground== {| | valign="top" | <syntaxhighlight lang="bash"> aws --version aws configure </syntaxhighlight> | valign="top"| <syntax...")
 
Line 39: Line 39:
|valign='top'|
|valign='top'|
* [https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html AWS » CLI » Install]
* [https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html AWS » CLI » Install]
* [[AWS]]


|valign='top'|
|valign='top'|
Line 49: Line 50:
|-
|-
|valign='top'|
|valign='top'|
* [https://stackoverflow.com/questions/44751574/ AWS » S3 » cURL Route]
* [[Google Cloud CLI]]
* [[Google Cloud CLI]]
* [[Online App]]
* [[Online App]]

Revision as of 02:41, 24 June 2024

wget -cq https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip -P ${HOME}/Downloads
unzip -q ${HOME}/Downloads/awscli-exe-linux-x86_64.zip -d ${HOME}/Downloads/
rm -rf   ${HOME}/Downloads/awscli-exe-linux-x86_64.zip
sudo     ${HOME}/Downloads/aws/install
rm -rf   ${HOME}/Downloads/aws

Playground

aws --version
aws configure
cat ~/.aws/credentials
cat ~/.aws/config

References