This quickstart shows you how to create, deploy, and execute your first workflow using the Cloud Console. The sample workflow sends a request to a sample API and then uses the response to create and send a request to a public API. The workflow returns the second API's response.
Before you begin
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud Console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Cloud project. Learn how to confirm that billing is enabled for your project.
Enable the Workflows API.
Enable the Workflows API-
In the Cloud Console, go to the Service accounts page.
Go to the Create Service Account page - Select Create service account.
- In the Service account name field, enter a name.
- Click Create.
From the Role list, select Logging >Logs Writer.
Note: The Role field authorizes your service account to access resources. To send logs to Cloud Logging, assign theroles/logging.logWriter
role. If you are developing a production app, always grant the least permissive roles possible. For more information, see granting roles to service accounts. For a list of Workflows roles, see the Access control reference.- Click Continue.
- Click Done.
Create and deploy a workflow
To create a new workflow, open the Workflows page in the Google Cloud Console:
Go to the Workflows pageOn the Workflows page in the console, select Create.
Enter a name for the new workflow, such as
myFirstWorkflow
. The name can contain letters, numbers, underscores, and hyphens. It must start with a letter and end with a number or letter.Choose us-central1 for the region.
Select the service account you created earlier for service account.
Select Next.
In the workflow editor, copy and paste the following workflow:
YAML
JSON
This workflow makes a call to a sample API to get the current date. It takes the day of the week from that response and passes it to the Wikipedia API, where it searches for relevant articles on Wikipedia about the current day of the week.
Select Deploy.
Execute the workflow
Now that your workflow has been successfully deployed, we can execute it for the first time. After deploying the workflow, you'll be taken to its Details page:
To execute the workflow:
On the Workflows details page, select Execute.
On the Execute workflow page, select Execute.
View your workflow's results in the Output pane:
You deployed and executed your first workflow!
Clean up
To avoid incurring charges to your Google Cloud account for the resources used in this quickstart, follow these steps.
Go to the Workflows page in the Cloud Console.
WorkflowsSelect the Delete button.
In the prompt that appears, enter the name of the workflow.
Select Delete.