Trigger
The Eventarc Trigger resource To get more information about Trigger, see:
How-to Guides
Example Usage
Eventarc Trigger With Cloud Run Destination
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const foo = new gcp.pubsub.Topic("foo", {name: "some-topic"});
const _default = new gcp.cloudrun.Service("default", {
name: "some-service",
location: "us-central1",
template: {
spec: {
containers: [{
image: "gcr.io/cloudrun/hello",
ports: [{
containerPort: 8080,
}],
}],
containerConcurrency: 50,
timeoutSeconds: 100,
},
},
traffics: [{
percent: 100,
latestRevision: true,
}],
});
const primary = new gcp.eventarc.Trigger("primary", {
name: "some-trigger",
location: "us-central1",
matchingCriterias: [{
attribute: "type",
value: "google.cloud.pubsub.topic.v1.messagePublished",
}],
destination: {
cloudRunService: {
service: _default.name,
region: "us-central1",
},
},
labels: {
foo: "bar",
},
transport: {
pubsub: {
topic: foo.id,
},
},
});
import pulumi
import pulumi_gcp as gcp
foo = gcp.pubsub.Topic("foo", name="some-topic")
default = gcp.cloudrun.Service("default",
name="some-service",
location="us-central1",
template={
"spec": {
"containers": [{
"image": "gcr.io/cloudrun/hello",
"ports": [{
"container_port": 8080,
}],
}],
"container_concurrency": 50,
"timeout_seconds": 100,
},
},
traffics=[{
"percent": 100,
"latest_revision": True,
}])
primary = gcp.eventarc.Trigger("primary",
name="some-trigger",
location="us-central1",
matching_criterias=[{
"attribute": "type",
"value": "google.cloud.pubsub.topic.v1.messagePublished",
}],
destination={
"cloud_run_service": {
"service": default.name,
"region": "us-central1",
},
},
labels={
"foo": "bar",
},
transport={
"pubsub": {
"topic": foo.id,
},
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var foo = new Gcp.PubSub.Topic("foo", new()
{
Name = "some-topic",
});
var @default = new Gcp.CloudRun.Service("default", new()
{
Name = "some-service",
Location = "us-central1",
Template = new Gcp.CloudRun.Inputs.ServiceTemplateArgs
{
Spec = new Gcp.CloudRun.Inputs.ServiceTemplateSpecArgs
{
Containers = new[]
{
new Gcp.CloudRun.Inputs.ServiceTemplateSpecContainerArgs
{
Image = "gcr.io/cloudrun/hello",
Ports = new[]
{
new Gcp.CloudRun.Inputs.ServiceTemplateSpecContainerPortArgs
{
ContainerPort = 8080,
},
},
},
},
ContainerConcurrency = 50,
TimeoutSeconds = 100,
},
},
Traffics = new[]
{
new Gcp.CloudRun.Inputs.ServiceTrafficArgs
{
Percent = 100,
LatestRevision = true,
},
},
});
var primary = new Gcp.Eventarc.Trigger("primary", new()
{
Name = "some-trigger",
Location = "us-central1",
MatchingCriterias = new[]
{
new Gcp.Eventarc.Inputs.TriggerMatchingCriteriaArgs
{
Attribute = "type",
Value = "google.cloud.pubsub.topic.v1.messagePublished",
},
},
Destination = new Gcp.Eventarc.Inputs.TriggerDestinationArgs
{
CloudRunService = new Gcp.Eventarc.Inputs.TriggerDestinationCloudRunServiceArgs
{
Service = @default.Name,
Region = "us-central1",
},
},
Labels =
{
{ "foo", "bar" },
},
Transport = new Gcp.Eventarc.Inputs.TriggerTransportArgs
{
Pubsub = new Gcp.Eventarc.Inputs.TriggerTransportPubsubArgs
{
Topic = foo.Id,
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/cloudrun"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/eventarc"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/pubsub"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
foo, err := pubsub.NewTopic(ctx, "foo", &pubsub.TopicArgs{
Name: pulumi.String("some-topic"),
})
if err != nil {
return err
}
_default, err := cloudrun.NewService(ctx, "default", &cloudrun.ServiceArgs{
Name: pulumi.String("some-service"),
Location: pulumi.String("us-central1"),
Template: &cloudrun.ServiceTemplateArgs{
Spec: &cloudrun.ServiceTemplateSpecArgs{
Containers: cloudrun.ServiceTemplateSpecContainerArray{
&cloudrun.ServiceTemplateSpecContainerArgs{
Image: pulumi.String("gcr.io/cloudrun/hello"),
Ports: cloudrun.ServiceTemplateSpecContainerPortArray{
&cloudrun.ServiceTemplateSpecContainerPortArgs{
ContainerPort: pulumi.Int(8080),
},
},
},
},
ContainerConcurrency: pulumi.Int(50),
TimeoutSeconds: pulumi.Int(100),
},
},
Traffics: cloudrun.ServiceTrafficArray{
&cloudrun.ServiceTrafficArgs{
Percent: pulumi.Int(100),
LatestRevision: pulumi.Bool(true),
},
},
})
if err != nil {
return err
}
_, err = eventarc.NewTrigger(ctx, "primary", &eventarc.TriggerArgs{
Name: pulumi.String("some-trigger"),
Location: pulumi.String("us-central1"),
MatchingCriterias: eventarc.TriggerMatchingCriteriaArray{
&eventarc.TriggerMatchingCriteriaArgs{
Attribute: pulumi.String("type"),
Value: pulumi.String("google.cloud.pubsub.topic.v1.messagePublished"),
},
},
Destination: &eventarc.TriggerDestinationArgs{
CloudRunService: &eventarc.TriggerDestinationCloudRunServiceArgs{
Service: _default.Name,
Region: pulumi.String("us-central1"),
},
},
Labels: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
Transport: &eventarc.TriggerTransportArgs{
Pubsub: &eventarc.TriggerTransportPubsubArgs{
Topic: foo.ID(),
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.pubsub.Topic;
import com.pulumi.gcp.pubsub.TopicArgs;
import com.pulumi.gcp.cloudrun.Service;
import com.pulumi.gcp.cloudrun.ServiceArgs;
import com.pulumi.gcp.cloudrun.inputs.ServiceTemplateArgs;
import com.pulumi.gcp.cloudrun.inputs.ServiceTemplateSpecArgs;
import com.pulumi.gcp.cloudrun.inputs.ServiceTrafficArgs;
import com.pulumi.gcp.eventarc.Trigger;
import com.pulumi.gcp.eventarc.TriggerArgs;
import com.pulumi.gcp.eventarc.inputs.TriggerMatchingCriteriaArgs;
import com.pulumi.gcp.eventarc.inputs.TriggerDestinationArgs;
import com.pulumi.gcp.eventarc.inputs.TriggerDestinationCloudRunServiceArgs;
import com.pulumi.gcp.eventarc.inputs.TriggerTransportArgs;
import com.pulumi.gcp.eventarc.inputs.TriggerTransportPubsubArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new Topic("foo", TopicArgs.builder()
.name("some-topic")
.build());
var default_ = new Service("default", ServiceArgs.builder()
.name("some-service")
.location("us-central1")
.template(ServiceTemplateArgs.builder()
.spec(ServiceTemplateSpecArgs.builder()
.containers(ServiceTemplateSpecContainerArgs.builder()
.image("gcr.io/cloudrun/hello")
.ports(ServiceTemplateSpecContainerPortArgs.builder()
.containerPort(8080)
.build())
.build())
.containerConcurrency(50)
.timeoutSeconds(100)
.build())
.build())
.traffics(ServiceTrafficArgs.builder()
.percent(100)
.latestRevision(true)
.build())
.build());
var primary = new Trigger("primary", TriggerArgs.builder()
.name("some-trigger")
.location("us-central1")
.matchingCriterias(TriggerMatchingCriteriaArgs.builder()
.attribute("type")
.value("google.cloud.pubsub.topic.v1.messagePublished")
.build())
.destination(TriggerDestinationArgs.builder()
.cloudRunService(TriggerDestinationCloudRunServiceArgs.builder()
.service(default_.name())
.region("us-central1")
.build())
.build())
.labels(Map.of("foo", "bar"))
.transport(TriggerTransportArgs.builder()
.pubsub(TriggerTransportPubsubArgs.builder()
.topic(foo.id())
.build())
.build())
.build());
}
}
resources:
primary:
type: gcp:eventarc:Trigger
properties:
name: some-trigger
location: us-central1
matchingCriterias:
- attribute: type
value: google.cloud.pubsub.topic.v1.messagePublished
destination:
cloudRunService:
service: ${default.name}
region: us-central1
labels:
foo: bar
transport:
pubsub:
topic: ${foo.id}
foo:
type: gcp:pubsub:Topic
properties:
name: some-topic
default:
type: gcp:cloudrun:Service
properties:
name: some-service
location: us-central1
template:
spec:
containers:
- image: gcr.io/cloudrun/hello
ports:
- containerPort: 8080
containerConcurrency: 50
timeoutSeconds: 100
traffics:
- percent: 100
latestRevision: true
Import
Trigger can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/triggers/{{name}}
{{project}}/{{location}}/{{name}}
{{location}}/{{name}}
When using thepulumi import
command, Trigger can be imported using one of the formats above. For example:
$ pulumi import gcp:eventarc/trigger:Trigger default projects/{{project}}/locations/{{location}}/triggers/{{name}}
$ pulumi import gcp:eventarc/trigger:Trigger default {{project}}/{{location}}/{{name}}
$ pulumi import gcp:eventarc/trigger:Trigger default {{location}}/{{name}}
Properties
Output only. The reason(s) why a trigger is in FAILED state.
Output only. The creation time.
Required. Destination specifies where the events should be sent to. Structure is documented below.
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Optional. EventDataContentType specifies the type of payload in MIME format that is expected from the CloudEvent data field. This is set to 'application/json' if the value is not defined.
Optional. User labels attached to the triggers that can be used to group resources. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
Required. null The list of filters that applies to event attributes. Only events that match all the provided filters will be sent to the destination. Structure is documented below.
The combination of labels configured directly on the resource and default labels configured on the provider.
Optional. The IAM service account email associated with the trigger. The service account represents the identity of the trigger. The principal who calls this API must have 'iam.serviceAccounts.actAs' permission in the service account. See https://cloud.google.com/iam/docs/understanding-service-accounts#sa_common for more information. For Cloud Run destinations, this service account is used to generate identity tokens when invoking the service. See https://cloud.google.com/run/docs/triggering/pubsub-push#create-service-account for information on how to invoke authenticated Cloud Run services. In order to create Audit Log triggers, the service account should also have 'roles/eventarc.eventReceiver' IAM role.
Optional. In order to deliver messages, Eventarc may use other GCP products as transport intermediary. This field contains a reference to that transport intermediary. This information can be used for debugging purposes.
Output only. The last-modified time.