0.3.0 • Published 4 years ago

rides2-secure-bucket v0.3.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

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 synth

to produce a basic stack with one SecureBucket resource

License

MIT License

0.3.0

4 years ago