CDK Construct for managing EC2 key pairs
Project description
CDK EC2 Key Pair
AWS CDK L3 construct for managing EC2 Key Pairs.
CloudFormation doesn't directly support creation of EC2 Key Pairs. This construct provides an easy interface for creating Key Pairs through a custom CloudFormation resource. The private key is stored in AWS Secrets Manager.
Usage
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
import aws_cdk.core as cdk
import aws_cdk.aws_ec2 as ec2
from cdk_ec2_key_pair import KeyPair
# Create the Key Pair
key = KeyPair(self, "A-Key-Pair",
name="a-key-pair",
description="This is a Key Pair"
)
# Grant read access to the private key to a role or user
key.grant_read(some_role)
# Use Key Pair on an EC2 instance
ec2.Instance(self, "An-Instance", {
"key_name": key.name
})
The private key will be stored in AWS Secrets Manager. The secret name is prefixed with ec2-private-key/
, so in this example it will be saved as ec2-private-key/a-key-pair
.
To download the private key via AWS cli you can run:
aws secretsmanager get-secret-value \
--secret-id ec2-private-key/a-key-pair \
--query SecretString \
--output text
Roadmap
- Secret prefix should be configurable
- Name should be optional
- Tagging support in a more standard way
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cdk-ec2-key-pair-1.1.0.tar.gz
(28.2 kB
view hashes)
Built Distribution
Close
Hashes for cdk_ec2_key_pair-1.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea0fa6f0f0be9ffe615df37ffed2832bd998981294ac96c8d1de4e560c17af09 |
|
MD5 | 66d1315f0d01bd90cb46275a78b96265 |
|
BLAKE2b-256 | 74ebf6abc602bd07e5c3c68d14f79a28feed99b7c0edac152287bf7c332652de |