How can I configure a lambda `callbackFunction` to...
# aws
l
How can I configure a lambda
callbackFunction
to use a specific cloudwatch log group? I am able to create the log group and set it as a dependency of the lambda, but another cloudwatch group gets created when I deploy and logs are instead sent to that new group instead of the one I specified as a dependency.
It seems like what's happening is the cloudwatch log group I define is being created and from the pulumi output it looks like it's a dependency of the lambda created from the
callbackFunction
call. However, when the lambda is actually deployed, a default cloudwatch log group is being used instead. This one is not tracked in the stack and cannot be destroyed using pulumi. Not sure if i'm maybe just missing some config somewhere, but this behavior seems odd.
nvm resolved. Didn't realize for lambdas the function name has to match the cloudwatch name and that you couldn't assign a custom one with a different name.
👍 1