We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef48216 commit 54b364dCopy full SHA for 54b364d
source/lib/stacks/druidStack.ts
@@ -139,7 +139,10 @@ export abstract class DruidStack extends cdk.Stack {
139
140
protected createCanary(druidEndpoint: string): synthetics.Canary {
141
return new synthetics.Canary(this, 'canary', {
142
- runtime: synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_5_1,
+ runtime: new synthetics.Runtime(
143
+ 'syn-nodejs-puppeteer-5.2',
144
+ synthetics.RuntimeFamily.NODEJS
145
+ ),
146
vpc: this.baseInfra.vpc,
147
vpcSubnets: { subnets: this.baseInfra.vpc.privateSubnets },
148
environmentVariables: { DRUID_ENDPOINT: druidEndpoint },
0 commit comments