cb
Cloud Build
ContainersGCP
General
General information about the service.
Description
Google Cloud Build is a service that executes your builds on Google Cloud infrastructure for CI/CD pipelines.
Service ID
cloudbuild.googleapis.comResource Pattern
projects/{project}/locations/{location}/builds/{build}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
cb-{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_cloudbuild_trigger" "main" {2 name = "cb-${var.environment}"3 location = var.region45 github {6 owner = var.github_owner7 name = var.github_repo8 push {9 branch = "^main$"10 }11 }1213 filename = "cloudbuild.yaml"14}
Utilities
Utilities to support app deployment or configuration.