Saturday, June 5, 2021

Install AWS CLI on MAC OS | How to install AWS CLI on MAC OS


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.


curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"

sudo installer -pkg AWSCLIV2.pkg -target / 

aws --version

aws-cli/2.2.9 Python/3.9.5 Darwin/20.4.0 source/arm64 prompt/off

No comments:

Post a Comment

How to install Checkov | How to Scan Terraform Code for finding security issues using Checkov

  Checkov is a static code analysis tool designed to scan Infrastructure as Code (IaC) files and identify potential security and compliance ...