An AWS Cloud Development Kit (CDK) construct for deploying shared file storage using Amazon FSx for Netapp ONTAP.
-
TypeScript
yarn add cdk-fsx-ontap
-
Python
pip install cdk-fsx-ontap
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,
});
This project utilizes projen (star it on GitHub) and was created by following this guide by hayao-k (like it on Dev.to).