1. Packages
  2. Pagerduty Provider
  3. API Docs
  4. IncidentWorkflowTrigger
PagerDuty v4.23.2 published on Wednesday, Apr 23, 2025 by Pulumi

pagerduty.IncidentWorkflowTrigger

Explore with Pulumi AI

An Incident Workflow Trigger defines when and if an Incident Workflow will be triggered.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as pagerduty from "@pulumi/pagerduty";

const myFirstWorkflow = new pagerduty.IncidentWorkflow("my_first_workflow", {
    name: "Example Incident Workflow",
    description: "This Incident Workflow is an example",
    steps: [{
        name: "Send Status Update",
        action: "pagerduty.com:incident-workflows:send-status-update:1",
        inputs: [{
            name: "Message",
            value: "Example status message sent on {{current_date}}",
        }],
    }],
});
const firstService = pagerduty.getService({
    name: "My First Service",
});
const automaticTrigger = new pagerduty.IncidentWorkflowTrigger("automatic_trigger", {
    type: "conditional",
    workflow: myFirstWorkflow.id,
    services: [firstServicePagerdutyService.id],
    condition: "incident.priority matches 'P1'",
    subscribedToAllServices: false,
});
const devops = pagerduty.getTeam({
    name: "devops",
});
const manualTrigger = new pagerduty.IncidentWorkflowTrigger("manual_trigger", {
    type: "manual",
    workflow: myFirstWorkflow.id,
    services: [firstServicePagerdutyService.id],
});
Copy
import pulumi
import pulumi_pagerduty as pagerduty

my_first_workflow = pagerduty.IncidentWorkflow("my_first_workflow",
    name="Example Incident Workflow",
    description="This Incident Workflow is an example",
    steps=[{
        "name": "Send Status Update",
        "action": "pagerduty.com:incident-workflows:send-status-update:1",
        "inputs": [{
            "name": "Message",
            "value": "Example status message sent on {{current_date}}",
        }],
    }])
first_service = pagerduty.get_service(name="My First Service")
automatic_trigger = pagerduty.IncidentWorkflowTrigger("automatic_trigger",
    type="conditional",
    workflow=my_first_workflow.id,
    services=[first_service_pagerduty_service["id"]],
    condition="incident.priority matches 'P1'",
    subscribed_to_all_services=False)
devops = pagerduty.get_team(name="devops")
manual_trigger = pagerduty.IncidentWorkflowTrigger("manual_trigger",
    type="manual",
    workflow=my_first_workflow.id,
    services=[first_service_pagerduty_service["id"]])
Copy
package main

import (
	"github.com/pulumi/pulumi-pagerduty/sdk/v4/go/pagerduty"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		myFirstWorkflow, err := pagerduty.NewIncidentWorkflow(ctx, "my_first_workflow", &pagerduty.IncidentWorkflowArgs{
			Name:        pulumi.String("Example Incident Workflow"),
			Description: pulumi.String("This Incident Workflow is an example"),
			Steps: pagerduty.IncidentWorkflowStepArray{
				&pagerduty.IncidentWorkflowStepArgs{
					Name:   pulumi.String("Send Status Update"),
					Action: pulumi.String("pagerduty.com:incident-workflows:send-status-update:1"),
					Inputs: pagerduty.IncidentWorkflowStepInputTypeArray{
						&pagerduty.IncidentWorkflowStepInputTypeArgs{
							Name:  pulumi.String("Message"),
							Value: pulumi.String("Example status message sent on {{current_date}}"),
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = pagerduty.LookupService(ctx, &pagerduty.LookupServiceArgs{
			Name: "My First Service",
		}, nil)
		if err != nil {
			return err
		}
		_, err = pagerduty.NewIncidentWorkflowTrigger(ctx, "automatic_trigger", &pagerduty.IncidentWorkflowTriggerArgs{
			Type:     pulumi.String("conditional"),
			Workflow: myFirstWorkflow.ID(),
			Services: pulumi.StringArray{
				firstServicePagerdutyService.Id,
			},
			Condition:               pulumi.String("incident.priority matches 'P1'"),
			SubscribedToAllServices: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		_, err = pagerduty.LookupTeam(ctx, &pagerduty.LookupTeamArgs{
			Name: "devops",
		}, nil)
		if err != nil {
			return err
		}
		_, err = pagerduty.NewIncidentWorkflowTrigger(ctx, "manual_trigger", &pagerduty.IncidentWorkflowTriggerArgs{
			Type:     pulumi.String("manual"),
			Workflow: myFirstWorkflow.ID(),
			Services: pulumi.StringArray{
				firstServicePagerdutyService.Id,
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Pagerduty = Pulumi.Pagerduty;

return await Deployment.RunAsync(() => 
{
    var myFirstWorkflow = new Pagerduty.IncidentWorkflow("my_first_workflow", new()
    {
        Name = "Example Incident Workflow",
        Description = "This Incident Workflow is an example",
        Steps = new[]
        {
            new Pagerduty.Inputs.IncidentWorkflowStepArgs
            {
                Name = "Send Status Update",
                Action = "pagerduty.com:incident-workflows:send-status-update:1",
                Inputs = new[]
                {
                    new Pagerduty.Inputs.IncidentWorkflowStepInputArgs
                    {
                        Name = "Message",
                        Value = "Example status message sent on {{current_date}}",
                    },
                },
            },
        },
    });

    var firstService = Pagerduty.GetService.Invoke(new()
    {
        Name = "My First Service",
    });

    var automaticTrigger = new Pagerduty.IncidentWorkflowTrigger("automatic_trigger", new()
    {
        Type = "conditional",
        Workflow = myFirstWorkflow.Id,
        Services = new[]
        {
            firstServicePagerdutyService.Id,
        },
        Condition = "incident.priority matches 'P1'",
        SubscribedToAllServices = false,
    });

    var devops = Pagerduty.GetTeam.Invoke(new()
    {
        Name = "devops",
    });

    var manualTrigger = new Pagerduty.IncidentWorkflowTrigger("manual_trigger", new()
    {
        Type = "manual",
        Workflow = myFirstWorkflow.Id,
        Services = new[]
        {
            firstServicePagerdutyService.Id,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.pagerduty.IncidentWorkflow;
import com.pulumi.pagerduty.IncidentWorkflowArgs;
import com.pulumi.pagerduty.inputs.IncidentWorkflowStepArgs;
import com.pulumi.pagerduty.PagerdutyFunctions;
import com.pulumi.pagerduty.inputs.GetServiceArgs;
import com.pulumi.pagerduty.IncidentWorkflowTrigger;
import com.pulumi.pagerduty.IncidentWorkflowTriggerArgs;
import com.pulumi.pagerduty.inputs.GetTeamArgs;
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 myFirstWorkflow = new IncidentWorkflow("myFirstWorkflow", IncidentWorkflowArgs.builder()
            .name("Example Incident Workflow")
            .description("This Incident Workflow is an example")
            .steps(IncidentWorkflowStepArgs.builder()
                .name("Send Status Update")
                .action("pagerduty.com:incident-workflows:send-status-update:1")
                .inputs(IncidentWorkflowStepInputArgs.builder()
                    .name("Message")
                    .value("Example status message sent on {{current_date}}")
                    .build())
                .build())
            .build());

        final var firstService = PagerdutyFunctions.getService(GetServiceArgs.builder()
            .name("My First Service")
            .build());

        var automaticTrigger = new IncidentWorkflowTrigger("automaticTrigger", IncidentWorkflowTriggerArgs.builder()
            .type("conditional")
            .workflow(myFirstWorkflow.id())
            .services(firstServicePagerdutyService.id())
            .condition("incident.priority matches 'P1'")
            .subscribedToAllServices(false)
            .build());

        final var devops = PagerdutyFunctions.getTeam(GetTeamArgs.builder()
            .name("devops")
            .build());

        var manualTrigger = new IncidentWorkflowTrigger("manualTrigger", IncidentWorkflowTriggerArgs.builder()
            .type("manual")
            .workflow(myFirstWorkflow.id())
            .services(firstServicePagerdutyService.id())
            .build());

    }
}
Copy
resources:
  myFirstWorkflow:
    type: pagerduty:IncidentWorkflow
    name: my_first_workflow
    properties:
      name: Example Incident Workflow
      description: This Incident Workflow is an example
      steps:
        - name: Send Status Update
          action: pagerduty.com:incident-workflows:send-status-update:1
          inputs:
            - name: Message
              value: Example status message sent on {{current_date}}
  automaticTrigger:
    type: pagerduty:IncidentWorkflowTrigger
    name: automatic_trigger
    properties:
      type: conditional
      workflow: ${myFirstWorkflow.id}
      services:
        - ${firstServicePagerdutyService.id}
      condition: incident.priority matches 'P1'
      subscribedToAllServices: false
  manualTrigger:
    type: pagerduty:IncidentWorkflowTrigger
    name: manual_trigger
    properties:
      type: manual
      workflow: ${myFirstWorkflow.id}
      services:
        - ${firstServicePagerdutyService.id}
variables:
  firstService:
    fn::invoke:
      function: pagerduty:getService
      arguments:
        name: My First Service
  devops:
    fn::invoke:
      function: pagerduty:getTeam
      arguments:
        name: devops
Copy

Create IncidentWorkflowTrigger Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new IncidentWorkflowTrigger(name: string, args: IncidentWorkflowTriggerArgs, opts?: CustomResourceOptions);
@overload
def IncidentWorkflowTrigger(resource_name: str,
                            args: IncidentWorkflowTriggerArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def IncidentWorkflowTrigger(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            subscribed_to_all_services: Optional[bool] = None,
                            type: Optional[str] = None,
                            workflow: Optional[str] = None,
                            condition: Optional[str] = None,
                            permissions: Optional[IncidentWorkflowTriggerPermissionsArgs] = None,
                            services: Optional[Sequence[str]] = None)
func NewIncidentWorkflowTrigger(ctx *Context, name string, args IncidentWorkflowTriggerArgs, opts ...ResourceOption) (*IncidentWorkflowTrigger, error)
public IncidentWorkflowTrigger(string name, IncidentWorkflowTriggerArgs args, CustomResourceOptions? opts = null)
public IncidentWorkflowTrigger(String name, IncidentWorkflowTriggerArgs args)
public IncidentWorkflowTrigger(String name, IncidentWorkflowTriggerArgs args, CustomResourceOptions options)
type: pagerduty:IncidentWorkflowTrigger
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IncidentWorkflowTriggerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. IncidentWorkflowTriggerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. IncidentWorkflowTriggerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IncidentWorkflowTriggerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IncidentWorkflowTriggerArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var incidentWorkflowTriggerResource = new Pagerduty.IncidentWorkflowTrigger("incidentWorkflowTriggerResource", new()
{
    SubscribedToAllServices = false,
    Type = "string",
    Workflow = "string",
    Condition = "string",
    Permissions = new Pagerduty.Inputs.IncidentWorkflowTriggerPermissionsArgs
    {
        Restricted = false,
        TeamId = "string",
    },
    Services = new[]
    {
        "string",
    },
});
Copy
example, err := pagerduty.NewIncidentWorkflowTrigger(ctx, "incidentWorkflowTriggerResource", &pagerduty.IncidentWorkflowTriggerArgs{
	SubscribedToAllServices: pulumi.Bool(false),
	Type:                    pulumi.String("string"),
	Workflow:                pulumi.String("string"),
	Condition:               pulumi.String("string"),
	Permissions: &pagerduty.IncidentWorkflowTriggerPermissionsArgs{
		Restricted: pulumi.Bool(false),
		TeamId:     pulumi.String("string"),
	},
	Services: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var incidentWorkflowTriggerResource = new IncidentWorkflowTrigger("incidentWorkflowTriggerResource", IncidentWorkflowTriggerArgs.builder()
    .subscribedToAllServices(false)
    .type("string")
    .workflow("string")
    .condition("string")
    .permissions(IncidentWorkflowTriggerPermissionsArgs.builder()
        .restricted(false)
        .teamId("string")
        .build())
    .services("string")
    .build());
Copy
incident_workflow_trigger_resource = pagerduty.IncidentWorkflowTrigger("incidentWorkflowTriggerResource",
    subscribed_to_all_services=False,
    type="string",
    workflow="string",
    condition="string",
    permissions={
        "restricted": False,
        "team_id": "string",
    },
    services=["string"])
Copy
const incidentWorkflowTriggerResource = new pagerduty.IncidentWorkflowTrigger("incidentWorkflowTriggerResource", {
    subscribedToAllServices: false,
    type: "string",
    workflow: "string",
    condition: "string",
    permissions: {
        restricted: false,
        teamId: "string",
    },
    services: ["string"],
});
Copy
type: pagerduty:IncidentWorkflowTrigger
properties:
    condition: string
    permissions:
        restricted: false
        teamId: string
    services:
        - string
    subscribedToAllServices: false
    type: string
    workflow: string
Copy

IncidentWorkflowTrigger Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The IncidentWorkflowTrigger resource accepts the following input properties:

SubscribedToAllServices This property is required. bool
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
Type
This property is required.
Changes to this property will trigger replacement.
string
[Updating causes resource replacement] May be either manual or conditional.
Workflow
This property is required.
Changes to this property will trigger replacement.
string
The workflow ID for the workflow to trigger.
Condition string
A PCL condition string which must be satisfied for the trigger to fire.
Permissions IncidentWorkflowTriggerPermissions
Indicates who can start this Trigger. Applicable only to manual-type triggers.
Services List<string>
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
SubscribedToAllServices This property is required. bool
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
Type
This property is required.
Changes to this property will trigger replacement.
string
[Updating causes resource replacement] May be either manual or conditional.
Workflow
This property is required.
Changes to this property will trigger replacement.
string
The workflow ID for the workflow to trigger.
Condition string
A PCL condition string which must be satisfied for the trigger to fire.
Permissions IncidentWorkflowTriggerPermissionsArgs
Indicates who can start this Trigger. Applicable only to manual-type triggers.
Services []string
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
subscribedToAllServices This property is required. Boolean
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
type
This property is required.
Changes to this property will trigger replacement.
String
[Updating causes resource replacement] May be either manual or conditional.
workflow
This property is required.
Changes to this property will trigger replacement.
String
The workflow ID for the workflow to trigger.
condition String
A PCL condition string which must be satisfied for the trigger to fire.
permissions IncidentWorkflowTriggerPermissions
Indicates who can start this Trigger. Applicable only to manual-type triggers.
services List<String>
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
subscribedToAllServices This property is required. boolean
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
type
This property is required.
Changes to this property will trigger replacement.
string
[Updating causes resource replacement] May be either manual or conditional.
workflow
This property is required.
Changes to this property will trigger replacement.
string
The workflow ID for the workflow to trigger.
condition string
A PCL condition string which must be satisfied for the trigger to fire.
permissions IncidentWorkflowTriggerPermissions
Indicates who can start this Trigger. Applicable only to manual-type triggers.
services string[]
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
subscribed_to_all_services This property is required. bool
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
type
This property is required.
Changes to this property will trigger replacement.
str
[Updating causes resource replacement] May be either manual or conditional.
workflow
This property is required.
Changes to this property will trigger replacement.
str
The workflow ID for the workflow to trigger.
condition str
A PCL condition string which must be satisfied for the trigger to fire.
permissions IncidentWorkflowTriggerPermissionsArgs
Indicates who can start this Trigger. Applicable only to manual-type triggers.
services Sequence[str]
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
subscribedToAllServices This property is required. Boolean
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
type
This property is required.
Changes to this property will trigger replacement.
String
[Updating causes resource replacement] May be either manual or conditional.
workflow
This property is required.
Changes to this property will trigger replacement.
String
The workflow ID for the workflow to trigger.
condition String
A PCL condition string which must be satisfied for the trigger to fire.
permissions Property Map
Indicates who can start this Trigger. Applicable only to manual-type triggers.
services List<String>
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.

Outputs

All input properties are implicitly available as output properties. Additionally, the IncidentWorkflowTrigger resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing IncidentWorkflowTrigger Resource

Get an existing IncidentWorkflowTrigger resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: IncidentWorkflowTriggerState, opts?: CustomResourceOptions): IncidentWorkflowTrigger
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        condition: Optional[str] = None,
        permissions: Optional[IncidentWorkflowTriggerPermissionsArgs] = None,
        services: Optional[Sequence[str]] = None,
        subscribed_to_all_services: Optional[bool] = None,
        type: Optional[str] = None,
        workflow: Optional[str] = None) -> IncidentWorkflowTrigger
func GetIncidentWorkflowTrigger(ctx *Context, name string, id IDInput, state *IncidentWorkflowTriggerState, opts ...ResourceOption) (*IncidentWorkflowTrigger, error)
public static IncidentWorkflowTrigger Get(string name, Input<string> id, IncidentWorkflowTriggerState? state, CustomResourceOptions? opts = null)
public static IncidentWorkflowTrigger get(String name, Output<String> id, IncidentWorkflowTriggerState state, CustomResourceOptions options)
resources:  _:    type: pagerduty:IncidentWorkflowTrigger    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Condition string
A PCL condition string which must be satisfied for the trigger to fire.
Permissions IncidentWorkflowTriggerPermissions
Indicates who can start this Trigger. Applicable only to manual-type triggers.
Services List<string>
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
SubscribedToAllServices bool
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
Type Changes to this property will trigger replacement. string
[Updating causes resource replacement] May be either manual or conditional.
Workflow Changes to this property will trigger replacement. string
The workflow ID for the workflow to trigger.
Condition string
A PCL condition string which must be satisfied for the trigger to fire.
Permissions IncidentWorkflowTriggerPermissionsArgs
Indicates who can start this Trigger. Applicable only to manual-type triggers.
Services []string
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
SubscribedToAllServices bool
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
Type Changes to this property will trigger replacement. string
[Updating causes resource replacement] May be either manual or conditional.
Workflow Changes to this property will trigger replacement. string
The workflow ID for the workflow to trigger.
condition String
A PCL condition string which must be satisfied for the trigger to fire.
permissions IncidentWorkflowTriggerPermissions
Indicates who can start this Trigger. Applicable only to manual-type triggers.
services List<String>
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
subscribedToAllServices Boolean
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
type Changes to this property will trigger replacement. String
[Updating causes resource replacement] May be either manual or conditional.
workflow Changes to this property will trigger replacement. String
The workflow ID for the workflow to trigger.
condition string
A PCL condition string which must be satisfied for the trigger to fire.
permissions IncidentWorkflowTriggerPermissions
Indicates who can start this Trigger. Applicable only to manual-type triggers.
services string[]
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
subscribedToAllServices boolean
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
type Changes to this property will trigger replacement. string
[Updating causes resource replacement] May be either manual or conditional.
workflow Changes to this property will trigger replacement. string
The workflow ID for the workflow to trigger.
condition str
A PCL condition string which must be satisfied for the trigger to fire.
permissions IncidentWorkflowTriggerPermissionsArgs
Indicates who can start this Trigger. Applicable only to manual-type triggers.
services Sequence[str]
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
subscribed_to_all_services bool
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
type Changes to this property will trigger replacement. str
[Updating causes resource replacement] May be either manual or conditional.
workflow Changes to this property will trigger replacement. str
The workflow ID for the workflow to trigger.
condition String
A PCL condition string which must be satisfied for the trigger to fire.
permissions Property Map
Indicates who can start this Trigger. Applicable only to manual-type triggers.
services List<String>
A list of service IDs. Incidents in any of the listed services are eligible to fire this trigger.
subscribedToAllServices Boolean
Set to true if the trigger should be eligible for firing on all services. Only allowed to be true if the services list is not defined or empty.
type Changes to this property will trigger replacement. String
[Updating causes resource replacement] May be either manual or conditional.
workflow Changes to this property will trigger replacement. String
The workflow ID for the workflow to trigger.

Supporting Types

IncidentWorkflowTriggerPermissions
, IncidentWorkflowTriggerPermissionsArgs

Restricted bool
If true, indicates that the Trigger can only be started by authorized Users. If false (default), any user can start this Trigger. Applicable only to manual-type triggers.
TeamId string
The ID of the Team whose members can manually start this Trigger. Required and allowed only if restricted is true.
Restricted bool
If true, indicates that the Trigger can only be started by authorized Users. If false (default), any user can start this Trigger. Applicable only to manual-type triggers.
TeamId string
The ID of the Team whose members can manually start this Trigger. Required and allowed only if restricted is true.
restricted Boolean
If true, indicates that the Trigger can only be started by authorized Users. If false (default), any user can start this Trigger. Applicable only to manual-type triggers.
teamId String
The ID of the Team whose members can manually start this Trigger. Required and allowed only if restricted is true.
restricted boolean
If true, indicates that the Trigger can only be started by authorized Users. If false (default), any user can start this Trigger. Applicable only to manual-type triggers.
teamId string
The ID of the Team whose members can manually start this Trigger. Required and allowed only if restricted is true.
restricted bool
If true, indicates that the Trigger can only be started by authorized Users. If false (default), any user can start this Trigger. Applicable only to manual-type triggers.
team_id str
The ID of the Team whose members can manually start this Trigger. Required and allowed only if restricted is true.
restricted Boolean
If true, indicates that the Trigger can only be started by authorized Users. If false (default), any user can start this Trigger. Applicable only to manual-type triggers.
teamId String
The ID of the Team whose members can manually start this Trigger. Required and allowed only if restricted is true.

Import

Incident workflows can be imported using the id, e.g.

$ pulumi import pagerduty:index/incidentWorkflowTrigger:IncidentWorkflowTrigger pagerduty_incident_workflow_trigger PLBP09X
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
PagerDuty pulumi/pulumi-pagerduty
License
Apache-2.0
Notes
This Pulumi package is based on the pagerduty Terraform Provider.