serverless-google-cloudfunctions
serverless-google-cloudfunctions copied to clipboard
Serverless Google Cloud Functions Plugin – Adds Google Cloud Functions support to the Serverless Framework
Hello, I want to get rid of service name and stage in function name, but I have a problem setting custom name for function. There is always an error after...
Because we are not all in US, i don't understand why the deployment bucket still has to be there by default... Here the deployment bucket uses the provider region for...
Hello, I'm trying to deploy a GCF using serverless but I got the following error. Every config is simple. - Python runtime ```Serverless: Invoke deploy Serverless: Invoke package Serverless: Packaging...
This PR adds support for setting eventTrigger failurePolicy on individual functions.
This simple PR exposes the ability to define vpcConnector for a google cloud function. You can read more documentation about vpcConnectors in the official documentation: https://cloud.google.com/functions/docs/connecting-vpc Please let me know...
Hi, I just started off on GCP+Serverless combination. Have a sample service deployed. However, after deploying when I invoke sls invoke -f first, I get the following error (hobbizzenv) yash@yash-Inspiron-5558:~/yash/myservice$...
Hello, I'm getting this error when deploying my application: ``` Error: Deployment failed: RESOURCE_ERROR {"ResourceType":"cloudfunctions.v1beta2.function","ResourceErrorCode":"400","ResourceErrorMessage":{"code":400,"message":"Default service account '[email protected]' doesn't exist. Please recreate this account (for example by disabling and enabling...
# Custom name for Google cloud functions ## Description For `AWS lambda`, it is possible to set custom name for a Lambda function (https://serverless.com/framework/docs/providers/aws/guide/functions/, line 14 in the example). I...
I have a following function config in `serverless.yml` ```yaml functions: create-account: handler: createAccount events: - http: create-account ``` Yet when the deployment runs, I get: ``` Deployed functions create-account https://us-central1-gcfteststuff.cloudfunctions.net/createAccount...
## Description 1. What did you do? I run `pip install -r requirements.txt` and all the imports work. I've done this in a isolated virtual environment running Python 3.7. Running...