Posts

Showing posts from October, 2020

AWS using CLI Mode

Image
   Task description: 🔰Create a key pair 🔰Create a security group and create a security group rule 🔰Launch an instance using the above created key pair and security group. 🔰Create an EBS volume of 1 GB. 🔰The final step is to attach the above created EBS volume to the instance you created. Connecting AWS using CLI We can access AWS in 2 ways one is using GUI and another way is CLI. Using GUI we can launch different kinds of instances only once using GUI but using CLI we can launch as many as different instances at once and even automate using CLI, we can perform shell scripting using CLI. To start off with using AWS CLI we need to first install AWS CLI 2 on our OS. You can install it from here https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-windows.html. Next is we need to create a user on your AWS account. We must allow programmatic access while creating us er . Next add existing policies or create new policies and add them to your IAM user. I am using power...