1.0.14 • Published 12 months ago
cdk-fsx-ontap v1.0.14
CDK FSx ONTAP
Overview
An AWS Cloud Development Kit (CDK) construct for deploying shared file storage using Amazon FSx for Netapp ONTAP.
Installation
TypeScript
yarn add cdk-fsx-ontap
Python
pip install cdk-fsx-ontap
Usage
a) basic - going with all of the defaults
NB, check the full example in src/examples/basic.ts
declare const vpc: ec2.Vpc;
declare const securityGroupSource: ec2.SecurityGroup;
new FsxOntap(this, 'FsxOntap', {
vpc,
ec2SecurityGroup,
});
Acknowledgements
This project utilizes projen (star it on GitHub) and was created by following this guide by hayao-k (like it on Dev.to).