ea

Eventarc

IntegrationGCP
General

General information about the service.

Description

Google Eventarc enables you to build event-driven architectures by routing events from Google services and SaaS to Cloud Run.

Service ID

eventarc.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/triggers/{trigger}

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

ea-{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_eventarc_trigger" "main" {
2 name = "ea-${var.environment}"
3 location = var.region
4
5 matching_criteria {
6 attribute = "type"
7 value = "google.cloud.storage.object.v1.finalized"
8 }
9
10 destination {
11 cloud_run_service {
12 service = google_cloud_run_v2_service.main.name
13 region = var.region
14 }
15 }
16}
Utilities

Utilities to support app deployment or configuration.