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.com

Resource Pattern

projects/{project}/locations/{location}/builds/{build}

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

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 DocumentationTerraform
terraform
1resource "google_cloudbuild_trigger" "main" {
2 name = "cb-${var.environment}"
3 location = var.region
4
5 github {
6 owner = var.github_owner
7 name = var.github_repo
8 push {
9 branch = "^main$"
10 }
11 }
12
13 filename = "cloudbuild.yaml"
14}
Utilities

Utilities to support app deployment or configuration.