ยปGoogle Cloud Run
For a step by step tutorial on deploying a Waypoint application to Google Cloud Run, visit HashiCorp Learn
Builders
Google Cloud Run uses Docker images for building, which are generated by these builders:
google-cloud-run (platform)
Deploy a container to Google Cloud Run.
Interface
Examples
Required Parameters
These parameters are used in the use
stanza for this plugin.
auto_scaling (category)
Configuration to control the auto scaling parameters for Cloud Run.
auto_scaling.max
Maximum number of Cloud Run instances. When the maximum requests per container is exceeded, Cloud Run will create an additional container instance to handle load. This parameter controls the maximum number of instances that can be created.
- Type: int
capacity (category)
CPU, Memory, and resource limits for each Cloud Run instance.
capacity.cpu_count
Number of CPUs to allocate the Cloud Run instance, min 1, max 2.
- Type: int
capacity.max_requests_per_container
Maximum number of concurrent requests each instance can handle. When the maximum requests are exceeded, Cloud Run will create an additional instance.
- Type: int
capacity.memory
Memory to allocate the Cloud Run instance specified in MB, min 128, max 4096.
- Type: int
capacity.request_timeout
Maximum time a request can take before timing out, max 900.
- Type: int
location
GCP location, e.g. europe-north-1.
- Type: string
project
GCP project ID where the Cloud Run instance will be deployed.
- Type: string
Optional Parameters
These parameters are used in the use
stanza for this plugin.
cloudsql_instances
Specify list of CloudSQL instances that the Cloud Run instance will have access to.
- Type: list of string
- Optional
port
The port your application listens on.
- Type: int
- Optional
service_account_name
Specify a service account email that Cloud Run will use to run the service. You must have the iam.serviceAccounts.actAs
permission on the service account.
- Type: string
- Optional
static_environment
Additional environment variables to be added to the Cloud Run instance.
- Type: map of string to string
- Optional
unauthenticated
Is public unauthenticated access allowed for the Cloud Run instance?.
- Type: bool
- Optional
vpc_access (category)
VPCAccess details.
vpc_access.connector
Set VPC Access Connector for the Cloud Run instance.
- Type: string
- Optional
vpc_access.egress
Set VPC egress. Supported values are 'all' and 'private-ranges-only'.
- Type: string
- Optional
Output Attributes
Output attributes can be used in your waypoint.hcl
as variables via artifact
or deploy
.
id
- Type: string
region
- Type: string
resource
- Type: cloudrun.Deployment_Resource
resource_state
- Type: opaqueany.Any
revision_id
- Type: string
url
- Type: string
google-cloud-run (releasemanager)
Manipulates the Cloud Run APIs to make deployments active.
Interface
Required Parameters
This plugin has no required parameters.
Optional Parameters
This plugin has no optional parameters.