Skip to content

Instantly share code, notes, and snippets.

@axelhodler
Created February 21, 2021 09:32
Show Gist options
  • Save axelhodler/fe3c2eb1c757ac0b259518a41606760e to your computer and use it in GitHub Desktop.
Save axelhodler/fe3c2eb1c757ac0b259518a41606760e to your computer and use it in GitHub Desktop.
Adding ECR
import * as cdk from '@aws-cdk/core';
import * as ecr from '@aws-cdk/aws-ecr';
export class CdktestsStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
new ecr.Repository(this, 'test-repository', {
repositoryName: `test`
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment