Open
Description
Error: Deployment failed: RESOURCE_ERROR
serverless.yml
index.js
service: josoroma-gcloud-stack # Don't use the word "google" in here
provider:
name: google
runtime: nodejs12
stage: dev
region: us-east1
# Google provider settings
project: josoroma-gcloud-stack # Google account project id
credentials: ~/.gcloud/josoroma-gcloud-stack-a969c850ed30.json
plugins:
- serverless-google-cloudfunctions
package:
exclude:
- node_modules/**
- .gitignore
- .git/**
functions:
graphql:
handler: handlerGraphql
events:
- http: path
test:
handler: handlerTest
events:
- http: path
src/graphql.js
src/tes.js
Thanks!