Skip to content

Instantly share code, notes, and snippets.

@Console32
Last active July 24, 2019 09:30
Show Gist options
  • Save Console32/6e3941a4b46c92b3abc66b4af4248c4f to your computer and use it in GitHub Desktop.
Save Console32/6e3941a4b46c92b3abc66b4af4248c4f to your computer and use it in GitHub Desktop.
medium.bastion-host.createLambda.ts
private createLambda(topic: sns.ITopic, ip: string) {
new lambda.Function(this, "AutoScalingAttachIpLambda", {
events: [new eventSources.SnsEventSource(topic)],
code: this.createLambdaCode(ip),
runtime: lambda.Runtime.NODEJS_8_10,
handler: "index.handler",
role: this.createLambdaRole()
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment