AWS Command Line Interface

AMOGH HEGDE
Oct 20, 2020

--

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.

How to start working on AWS CLI :-

Step 1 -

Download the AWS CLI Program from Google.

Step 2 -

Create a User through IAM and provide him the specific power.

step 3 -

login to AWS through AWS CLI by using access key and secret key of that particular user

Step 4 -

Start using AWS CLI commands to manage your AWS services

SOME EXAMPLES-

  • Create a key pair

cmd -

aws ec2 create-key-pair — key-name tom

  • Create a security group and add a inbound rule
  • Launch an instance
  • Create a EBS volume of 1GB
  • Attach the EBS volume to instance

--

--