You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 23, 2024. It is now read-only.
As the API is currently exposed, lambda functions referenced with gg_group_setup are on-demand by default with no option to set them to pinned. I need a way to specify that a lambda function is long-lived / pinned – see create_function_definition.
I've been able hack in support by overriding GroupCommands._create_function_definition in a subclass.
After subclassing, the relevant config – "lambda_functions": { "function_name": { "arn": "function_arn", "arn_qualifier": "dev" }
– is updated to look like this – "lambda_functions": { "function_name": { "arn": "function_arn", "arn_qualifier": "dev", "pinned": false }
Are there plans to expose this functionality? I can package these changes up into a PR if that's helpful.
The text was updated successfully, but these errors were encountered:
Of course, and thank you for the hard work on this project. CloudFormation support would be ideal. I'm not in the position to promise a pull request at the moment. My hope is that a contribution would be useful for at least a little while until CloudFormation support arrives.
I just made some other changes for Issue #13 and #10. So my head is back on this project (:bulb:). I will see about adding the ability to flag functions as pinned when defined in the group.
As the API is currently exposed, lambda functions referenced with gg_group_setup are on-demand by default with no option to set them to pinned. I need a way to specify that a lambda function is long-lived / pinned – see create_function_definition.
I've been able hack in support by overriding GroupCommands._create_function_definition in a subclass.
After subclassing, the relevant config –
"lambda_functions": { "function_name": { "arn": "function_arn", "arn_qualifier": "dev" }
– is updated to look like this –
"lambda_functions": { "function_name": { "arn": "function_arn", "arn_qualifier": "dev", "pinned": false }
Are there plans to expose this functionality? I can package these changes up into a PR if that's helpful.
The text was updated successfully, but these errors were encountered: