Your AWS Cloud9 Environment should be ready. Now, you can become familiar with the environment, learn about the AWS CLI, and then create an Amazon S3 bucket with the AWS CLI. This S3 bucket is used in the next module.
The AWS Cloud9 IDE is similar to a traditional IDE you can find on virtually any system. It comprises the following components:
AWS Cloud9 also includes the latest version of AWS CLI, but it is always a good practice to verify you are using the latest version. You can verify the AWS CLI version by following the next section.
The AWS CLI allows you to manage services using the command line and control services through scripts. Many users choose to conduct some level of automation using the AWS CLI.
Use the copy button in each of the following code samples to quickly copy the command to your clipboard.
In your AWS Cloud9 terminal window paste the following commands
To make sure you have AWS CLI version 2.x. You will first uninstall any existing AWS CLI.
sudo pip uninstall -y awscli
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
source ~/.bash_profile
aws --version
sudo yum install -y jq
VERSION=v4.28.1
BINARY=yq_linux_amd64
mkdir -p $HOME/.local/bin
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY} -O $HOME/.local/bin/yq && chmod +x $HOME/.local/bin/yq
export AWS_REGION=$(curl --silent http://169.254.169.254/latest/meta-data/placement/region)
echo $AWS_REGION
aws configure set default.region ${AWS_REGION}
aws configure get default.region