Created
February 21, 2021 09:32
-
-
Save axelhodler/fe3c2eb1c757ac0b259518a41606760e to your computer and use it in GitHub Desktop.
Adding ECR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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