[aws] #cloud #aws
Amazon EC2 (elastic compute) uses public key crypto to decript/encrypt login info.
The public and private keys are know as key pair.
When a vm instance is launched you specify an existing pair or a new pair that will be created at launch. At boot time,the public key content is palced on the vm intance in ~/.ssh/authorized_keys
from the AWS DOC
chmod 400 my_key_pair_private.pem
A key pair with a specified name and fingerprint appeas in the list of key pairs
From a downloaded yourkeyPair.pem file extract a public key
ssh-keygen -y -f yourkeyPair.pem > yourkeyPair.pub
The public key is shareable with counterparties.
AWS route 53 is an authoritative Domain Name System (DNS) service https://console.aws.amazon.com/route53