Answers for "aws cli install linux ec2"

2

install aws cli version 2

curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o AWSCLIV2.pkg
sudo installer -pkg AWSCLIV2.pkg -target /
rm AWSCLIV2.pkg
Posted by: Guest on March-20-2022
1

Lunch EC2 instance from AWS CLI

aws ec2 run-instances \
    --image-id ami-0d1bf5b68307103c2 \
    --instance-type t2.micro
Posted by: Guest on October-12-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language