Hands on DevSecOps Coaching that is provided on AWS and Azure Cloud platforms. Contact Coach AK at devops.coaching@gmail.com for more info. You can also reach out to Coach AK at +1(469) 733-5248
The Azure command-line interface (Azure CLI) is a set of commands used to create and manage Azure resources. The Azure CLI is available across Azure services and is designed to get you working quickly with Azure, with an emphasis on automation. Azure CLI is Microsoft's cross-platform command-line experience for managing Azure resources.
Azure CLI can be installed in Mac OS by using Homebrew:
Run the update first
brew update && brew install azure-cli
To check the version of Azure CLI
az version
Run the Azure CLI with the az command. To sign in, use the az login command.az login
Ansible is one of the popular configuration management tools. Ansible
can also be used for infrastructure provisioning as well in AWS. Please
find steps for installing Ansible on Apple Mac OS or laptop.
Ansible can be installed on Mac OS many ways, but preferred way is using pip which is a Python package manager.
Install Pip
If pip isn’t already available on your system, run the following commands to install it: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python3 get-pip.py
pip --version
Once pip is installed, install Ansible using pip.
Install Ansible using Pip
To install ansible globally, use following command sudo -H pip3 install ansible
Once Ansible is installed, you can verify the version.
ansible --version
You should be able to see the version.
Install Boto framework
Boto is a Python package that provides interfaces to Amazon Web Service. It is AWS SDK for Python.
sudo pip install boto sudo pip install boto3
Create Ansible hosts file
when you install Ansible on Mac OS, it does not create ansible hosts file. so you need to create it.
sudo mkdir /etc/ansible
Watch the above steps as a video in YouTube channel:
Terraform is used for provisioning infrastructure on Cloud. You don't need to
create manually any resource in AWS. Please find steps for installing Terraform on Apple machine or laptop.