wf

Workflows

IntegrationGCP
General

General information about the service.

Description

Google Cloud Workflows orchestrates and automates Google Cloud and HTTP-based API services with serverless workflows.

Service ID

workflows.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/workflows/{workflow}

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

wf-{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_workflows_workflow" "main" {
2 name = "wf-${var.environment}"
3 region = var.region
4 source_contents = <<-EOF
5 - step1:
6 call: http.get
7 args:
8 url: https://example.com
9 result: response
10 EOF
11}
Utilities

Utilities to support app deployment or configuration.