CDK construct for Amazon FSx for Netapp ONTAP
npm install cdk-fsx-ontapAn AWS Cloud Development Kit (CDK) construct
for deploying shared file storage using
Amazon FSx for Netapp ONTAP.
* TypeScript
``bash`
yarn add cdk-fsx-ontap
* Python
`bash`
pip install cdk-fsx-ontap
a) basic - going with all of the defaults
NB, check the full example in src/examples/basic.ts
`typescript
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_).