This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
fusion-cdk 0.0.0
Install from the command line:
Learn more about npm packages
$ npm install @slalombuild/fusion-cdk@0.0.0
Install via package.json:
"@slalombuild/fusion-cdk": "0.0.0"
About this version
Secure by default cloud infrastructure configuration using the Terraform CDK.
Install the library
npm install @slalombuild/fusion-cdk
Getting started with the Fusion CDK library is almost exactly like using the terraform cdk constructs you're already used to. Each construct is a light wrapper around the original provider with some opinionated security constraints added on.
import { App, TerraformStack } from "cdktf";
import * as fusion from "@slalombuild/fusion-cdk";
import { security } from "@slalombuild/fusion-cdk/@types";
const app = new App();
const stack = new TerraformStack(app, "cdktf-constructs-demo");
new fusion.S3Bucket(stack, "bucket", {
// You can opt out of security controls
// by explicitly marking your property as insecure
encryptionKey: security.NOT_SECURE,
});
app.synth();
For detailed development instructions, view our DEVELOPMENT.md and CONTRIBUTING.md.
Details
- fusion-cdk
- slalombuild
- almost 2 years ago
- MIT
- 33 dependencies
Assets
- fusion-cdk-0.0.0.tgz
Download activity
- Total downloads 0
- Last 30 days 0
- Last week 0
- Today 0