thanks everyone for your help so far. i’m getting...
# golang
a
thanks everyone for your help so far. i’m getting really close now. i’m just trying to get my lambda to run on a schedule. i’ve created a cloudwatch event specifying a 15 minute schedule, and a cloudwatch target specifying my lambda. in the console, i would then go to my lambda, and hit the “add trigger” button, and select the cloudwatch event and target from the relevant dropdowns. i don’t see where this last piece of functionality lies in pulumi. i grepped through the go sources for
trigger
and didn’t come up with much.
hmm, maybe i am just missing the permissions?
answering my own question for posterity: yes, all i needed to do was add a
lambda.Permission
allowing the event to trigger the function.