0.3.0 • Published 6 years ago
rides2-secure-bucket v0.3.0
A CDK L3 Construct for a Secure Bucket
This is an AWS CDK L3 Construct used to demonstrate the development and publishing process with the AWS CDK.
Usage
Just import and use it.
import cdk = require('@aws-cdk/core');
import {SecureBucket} from 'secure-bucket';
export class SandboxCdkStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
new SecureBucket(this, 'myBucket',{});
}
}Encryption options
This is just a wrapper around an S3 Bucket and the props are shared.
However, you cannot supply an UNENCRYPTED option for the encryption property. If you do, or don't set it at all, it will use the BucketEncryption.KMS_MANAGED value by default.
Integration Test
If you want to see full usage, you can run
$ cdk synthto produce a basic stack with one SecureBucket resource
License
0.3.0
6 years ago