[python]Create keypair in EC2

This is a simple code using boto3.

To generate the key pair for EC2 here’s the simple code.

import boto3
from pprint import pprint

ec2 = boto3.client('ec2')
""":type : pyboto3.ec2"""
keyname = input('enter a key name:')
key_pair_creation_response = ec2.create_key_pair(KeyName=keyname)
pprint(keyname)
Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s