Skip to content

Instantly share code, notes, and snippets.

@AndrewBestbier
Last active May 17, 2020 08:30
Show Gist options
  • Save AndrewBestbier/b3712f4aec25e4aa6ac598cb7ab1f060 to your computer and use it in GitHub Desktop.
Save AndrewBestbier/b3712f4aec25e4aa6ac598cb7ab1f060 to your computer and use it in GitHub Desktop.
export class InfrastructureStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
const bucket = new s3.Bucket(this, 'MyFirstBucket', {
bucketName: 'andrew-bestbier-cdk-blog'
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment