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.comResource Pattern
projects/{project}/locations/{location}/services/{service}References
Chat
Powered by AITalk 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 Documentation
terraform
1resource "google_cloud_run_v2_service" "main" {2 name = "run-${var.environment}"3 location = var.region45 template {6 containers {7 image = "gcr.io/${var.project_id}/my-app:latest"8 }9 }10}
Utilities
Utilities to support app deployment or configuration.