run

Cloud Run

Compute & WebGCP
General

General information about the service.

Description

Google Cloud Run is a managed compute platform that lets you run containers directly on top of Google's scalable infrastructure.

Service ID

run.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/services/{service}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

run-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_cloud_run_v2_service" "main" {
2 name = "run-${var.environment}"
3 location = var.region
4
5 template {
6 containers {
7 image = "gcr.io/${var.project_id}/my-app:latest"
8 }
9 }
10}
Utilities

Utilities to support app deployment or configuration.