in lib/keptn-construct/index.ts [7:21]
constructor(scope: cdk.Construct, id: string) {
super(scope, id);
// AddOns for the cluster
const stackId = `${id}-blueprint`;
const KeptnControlPlane = new KeptnControlPlaneAddOn({
ssmSecretName: 'keptn-secrets'
})
EksBlueprint.builder()
.account(process.env.CDK_DEFAULT_ACCOUNT!)
.region(process.env.CDK_DEFAULT_REGION)
.addOns(KeptnControlPlane)
.build(scope, stackId);
}