serverless-google-cloudfunctions
serverless-google-cloudfunctions copied to clipboard
Serverless Google Cloud Functions Plugin – Adds Google Cloud Functions support to the Serverless Framework
After updating to 2.1.0 for environment variable support, I ran into an unexpected issue where an environment variable, which is an integer, was rejected by GCF and thus prevented deployment...
I need to create a Google Cloud Function triggered by Cloud Storage event. I have checked documentations at Serverless.com and GitHub issues at this repository, and can't find any clue...
I'm testing my cloud functions locally with the [Google Cloud Functions Emulator](https://github.com/GoogleCloudPlatform/cloud-functions-emulator/). But then I have to run the 'native' cloud functions commands like `functions deploy helloWorld --trigger-http` every time,...
Resolves #103 Resolves #108 Resolves #87 All tests pass after updating packages. `npm audit` returned 0 vulnerabilities.
Hi, @pmuens et al., First off, thank you for all of the work you've done here. Having helped maintain some popular open-source libraries, I can sympathize with the amount of...
`Cloud Functions v1beta2 API` is deprecated. And will be terminated soon. https://cloud.google.com/functions/docs/migrating But `serverless-google-cloudfunctions` is still using it. https://github.com/serverless/serverless-google-cloudfunctions/blob/043516fbce95462ff41cbf2a5101fb0253556e24/provider/googleProvider.js#L47
It would be great if this supported firebase real time db triggers: https://firebase.google.com/docs/reference/functions/functions.database
Is it possible to update individual functions like below? `serverless deploy function -f first` This command doesn't seem to be doing anything when used with the google provider.
In moving my function from AWS to GCP one of the issues I ran into was runtime names. Since they map pretty easily between AWS->GCP it seems relevant to accept...
In moving my function from AWS to GCP one of the issues I ran into was the timeout value. Since the difference between AWS and GCP was "120" vs "120s",...