Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 2.17 KB

gcp_cloud_run.md

File metadata and controls

40 lines (30 loc) · 2.17 KB

GCP Cloud Run

Table of content

Configuration

Setting Env var Default value Description
gcp.credentials GCP_CREDENTIALS The base64-encoded JSON key file for the GCP service account
gcp.cloudrun.endpoint GCP_CLOUDRUN_ENDPOINT The URL of the Cloud Run, if not empty, Google Cloud Run is enabled
gcp.cloudrun.jwt GCP_CLOUDRUN_JWT Appropriate JWT to invoke the Cloud Function
gcp.cloudrun.minimumpriority GCP_CLOUDRUN_MINIMUMPRIORITY "" (= debug) Minimum priority of event for using this output, order is emergency,alert,critical,error,warning,notice,informational,debug or ""

Note

The Env var values override the settings from yaml file.

Example of config.yaml

gcp:
  credentials: "" # The base64-encoded JSON key file for the GCP service account
  cloudrun:
    endpoint: "" # The URL of the Cloud Function
    jwt: "" # Appropriate JWT to invoke the Cloud Function
    # minimumpriority: "debug" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informational|debug or "" (default)

Additional info

Screenshots