Setting up AWS CLI

Search for a command to run...

No comments yet. Be the first to comment.
Introduction Argo Workflows is an open-source workflow orchestration tool for Kubernetes. In this tutorial, we will walk through the steps to install Argo Workflows on a Kubernetes cluster and access its server UI. Step 1: Check Current Context Befor...

The Azure CLI is a powerful tool for managing and automating tasks in Azure. To use the Azure CLI, you need to log in to your Azure account. In this blog, we will go over the different methods you can use to log in to Azure using the Azure CLI. Log i...

Connecting to an Azure VM from windows can be a bit tricky and you may get errors like WARNING: UNPROTECTED PRIVATE KEY FILE! Permissions for ' ' are too open, It is required that your private key files are NOT accessible by others This private key w...

A methodology where all the configurational and/or infrastructure codes are set up in a separate single repository is known as GitOps. This suits tools like Ansible, Terraform and Kubernetes, where they do require separate files for their configurati...

Straight to the point, there are tons of things to ask in JS, but these are a few of them which can be a quick refresher. Event loop, Single-threaded programming language - Explain, Asynchronous and synchronous, Promises and callbacks, "This" ke...

This blog focuses on the quick steps to install AWS CLI and start working with it.
Download the AWS CLI with respect to your operating system from https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html
Once installed, verify the installation by opening the CMD or terminal and typing the command
aws --version
If this works and gives the version of it, then we can proceed to the next step.
Now, the second step is to configure your credentials with the AWS CLI, and that can be done by the command
aws configure
This will ask for the access key and secret access key for your AWS account, the region and the format like JSON.
In Linux, the configuration can be altered in the file ~/.aws/credentials, and also multiple users can be configured by specifying a name to the new user profile.
Have a great day.
See you on the next one.