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.comResource Pattern
projects/{project}/locations/{location}/triggers/{trigger}References
Chat
Powered by AITalk 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 Documentation
terraform
1resource "google_eventarc_trigger" "main" {2 name = "ea-${var.environment}"3 location = var.region45 matching_criteria {6 attribute = "type"7 value = "google.cloud.storage.object.v1.finalized"8 }910 destination {11 cloud_run_service {12 service = google_cloud_run_v2_service.main.name13 region = var.region14 }15 }16}
Utilities
Utilities to support app deployment or configuration.