Create a workflow using Terraform

Create a Terraform configuration file that includes a workflow as a Google Cloud resource.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

Terraform

To learn how to apply or remove a Terraform configuration, see Basic Terraform commands. For more information, see the Terraform provider reference documentation.

resource "google_project_service" "workflows" {
  service            = "workflows.googleapis.com"
  disable_on_destroy = false
}

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.