Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
let codeCommitHint = `
Create a "imagedefinitions.json" file and git add/push into CodeCommit repository "${CODECOMMIT_REPO_NAME}" with the following value:
[
{
"name": "defaultContainer",
"imageUri": "${this.ecrRepository.repositoryUri}:latest"
}
]
`
new cdk.CfnOutput(this, 'Hint', {
value: codeCommitHint
})
new cdk.CfnOutput(this, 'CodeBuildProjectName', {
value: CodeBuildProject.name
})
new cdk.CfnOutput(this, 'Bucket', { value: coffeeShopBucket.bucketName });
}
}