Posts

Showing posts from November, 2020

Launch AWS Instance Using AWS CLI

Image
Objective : From the given Requirement Launch an EC2 instance from Windows Command Prompt Note - This "-" represents two hyphens and words that are highlighted are command What is Key-Pair? A key pair consisting of a private key and a public key, is a set of security credentials that you use to prove your identity when connecting to an instance, Amazon EC2 stores the public key and you store the private key You use the private key, instead of a password, to securely access your instances Anyone who possesses your private keys can connect to your instances, so it's important that you store your private keys in a secure place, What is the Security Group A security group acts as a virtual firewall for your EC2 instances to control Incoming and outgoing traffic. Inbound rules control the incoming traffic to your instance, and outbound rules control the outgoing traffic from your instance. If you don't specify a security group, Amazon EC2 uses the default security group. W