cdk-aws-ec2-efs
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

EC2 with EFS AWS CDK construct

npm version PyPI version

This Construct provides an easy way to mount an EFS on EC2 in AWS CDK.

It will inject mount commands as user data script to EC2. And the EFS will be mounted after initializing.

Installation

JavaScript & TypeScript

npm i cdk-aws-ec2-efs

Python

pip install cdk-aws-ec2-efs

Usage

Create an AWS CDK project, in your application stack create EC2 and EFS resources. Note EC2 and EFS must be in the same VPC so EC2 can reach EFS. Then use the construct to mount EFS to EC2:

    const fileSystem = new cdk.aws_efs.FileSystem(this, "fileSystem", {
      ...
    });
    const ec2Instance = new ec2.Instance(this, "ec2-instance", {
      ...
    });
    new Ec2WithEfs(this, "EfsMount", {
      instance: ec2Instance,
      fileSystem: fileSystem,
      configureConnection: true,
    });

In the above example we pass configureConnection as true, This tell construct to take care of adding rules to EFS security groups to enable EC2 access.

Refer to API.md for full documentation.

Readme

Keywords

Package Sidebar

Install

npm i cdk-aws-ec2-efs

Weekly Downloads

0

Version

0.0.3

License

Apache-2.0

Unpacked Size

124 kB

Total Files

10

Last publish

Collaborators

  • glyph-ack