1. Packages
  2. PagerDuty
  3. API Docs
  4. SlackConnection
PagerDuty v4.10.1 published on Wednesday, Mar 27, 2024 by Pulumi

pagerduty.SlackConnection

Explore with Pulumi AI

pagerduty logo
PagerDuty v4.10.1 published on Wednesday, Mar 27, 2024 by Pulumi

    A slack connection allows you to connect a workspace in Slack to a PagerDuty service or team which allows you to acknowledge and resolve PagerDuty incidents from the Slack user interface.

    NOTES for using this resource:

    • To first use this resource you will need to map your PagerDuty account to a valid Slack Workspace. This can only be done through the PagerDuty UI.
    • This resource requires a PagerDuty user-level API key. This can be set as the user_token on the provider tag or as the PAGERDUTY_USER_TOKEN environment variable.
    • This resource is for configuring Slack V2 Next Generation connections. If you configured your Slack integration (V1 or V2) prior to August 10, 2021, you may migrate to the Slack V2 Next Generation update using this migration instructions, but if you configured your Slack integration after that date, you will have access to the update out of the box.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as pagerduty from "@pulumi/pagerduty";
    
    const fooTeam = new pagerduty.Team("fooTeam", {});
    const p1 = pagerduty.getPriority({
        name: "P1",
    });
    const fooSlackConnection = new pagerduty.SlackConnection("fooSlackConnection", {
        sourceId: fooTeam.id,
        sourceType: "team_reference",
        workspaceId: "T02A123LV1A",
        channelId: "C02CABCDAC9",
        notificationType: "responder",
        configs: [{
            events: [
                "incident.triggered",
                "incident.acknowledged",
                "incident.escalated",
                "incident.resolved",
                "incident.reassigned",
                "incident.annotated",
                "incident.unacknowledged",
                "incident.delegated",
                "incident.priority_updated",
                "incident.responder.added",
                "incident.responder.replied",
                "incident.status_update_published",
                "incident.reopened",
            ],
            priorities: [p1.then(p1 => p1.id)],
        }],
    });
    
    import pulumi
    import pulumi_pagerduty as pagerduty
    
    foo_team = pagerduty.Team("fooTeam")
    p1 = pagerduty.get_priority(name="P1")
    foo_slack_connection = pagerduty.SlackConnection("fooSlackConnection",
        source_id=foo_team.id,
        source_type="team_reference",
        workspace_id="T02A123LV1A",
        channel_id="C02CABCDAC9",
        notification_type="responder",
        configs=[pagerduty.SlackConnectionConfigArgs(
            events=[
                "incident.triggered",
                "incident.acknowledged",
                "incident.escalated",
                "incident.resolved",
                "incident.reassigned",
                "incident.annotated",
                "incident.unacknowledged",
                "incident.delegated",
                "incident.priority_updated",
                "incident.responder.added",
                "incident.responder.replied",
                "incident.status_update_published",
                "incident.reopened",
            ],
            priorities=[p1.id],
        )])
    
    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 {
    		fooTeam, err := pagerduty.NewTeam(ctx, "fooTeam", nil)
    		if err != nil {
    			return err
    		}
    		p1, err := pagerduty.GetPriority(ctx, &pagerduty.GetPriorityArgs{
    			Name: "P1",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = pagerduty.NewSlackConnection(ctx, "fooSlackConnection", &pagerduty.SlackConnectionArgs{
    			SourceId:         fooTeam.ID(),
    			SourceType:       pulumi.String("team_reference"),
    			WorkspaceId:      pulumi.String("T02A123LV1A"),
    			ChannelId:        pulumi.String("C02CABCDAC9"),
    			NotificationType: pulumi.String("responder"),
    			Configs: pagerduty.SlackConnectionConfigArray{
    				&pagerduty.SlackConnectionConfigArgs{
    					Events: pulumi.StringArray{
    						pulumi.String("incident.triggered"),
    						pulumi.String("incident.acknowledged"),
    						pulumi.String("incident.escalated"),
    						pulumi.String("incident.resolved"),
    						pulumi.String("incident.reassigned"),
    						pulumi.String("incident.annotated"),
    						pulumi.String("incident.unacknowledged"),
    						pulumi.String("incident.delegated"),
    						pulumi.String("incident.priority_updated"),
    						pulumi.String("incident.responder.added"),
    						pulumi.String("incident.responder.replied"),
    						pulumi.String("incident.status_update_published"),
    						pulumi.String("incident.reopened"),
    					},
    					Priorities: pulumi.StringArray{
    						pulumi.String(p1.Id),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Pagerduty = Pulumi.Pagerduty;
    
    return await Deployment.RunAsync(() => 
    {
        var fooTeam = new Pagerduty.Team("fooTeam");
    
        var p1 = Pagerduty.GetPriority.Invoke(new()
        {
            Name = "P1",
        });
    
        var fooSlackConnection = new Pagerduty.SlackConnection("fooSlackConnection", new()
        {
            SourceId = fooTeam.Id,
            SourceType = "team_reference",
            WorkspaceId = "T02A123LV1A",
            ChannelId = "C02CABCDAC9",
            NotificationType = "responder",
            Configs = new[]
            {
                new Pagerduty.Inputs.SlackConnectionConfigArgs
                {
                    Events = new[]
                    {
                        "incident.triggered",
                        "incident.acknowledged",
                        "incident.escalated",
                        "incident.resolved",
                        "incident.reassigned",
                        "incident.annotated",
                        "incident.unacknowledged",
                        "incident.delegated",
                        "incident.priority_updated",
                        "incident.responder.added",
                        "incident.responder.replied",
                        "incident.status_update_published",
                        "incident.reopened",
                    },
                    Priorities = new[]
                    {
                        p1.Apply(getPriorityResult => getPriorityResult.Id),
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.pagerduty.Team;
    import com.pulumi.pagerduty.PagerdutyFunctions;
    import com.pulumi.pagerduty.inputs.GetPriorityArgs;
    import com.pulumi.pagerduty.SlackConnection;
    import com.pulumi.pagerduty.SlackConnectionArgs;
    import com.pulumi.pagerduty.inputs.SlackConnectionConfigArgs;
    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 fooTeam = new Team("fooTeam");
    
            final var p1 = PagerdutyFunctions.getPriority(GetPriorityArgs.builder()
                .name("P1")
                .build());
    
            var fooSlackConnection = new SlackConnection("fooSlackConnection", SlackConnectionArgs.builder()        
                .sourceId(fooTeam.id())
                .sourceType("team_reference")
                .workspaceId("T02A123LV1A")
                .channelId("C02CABCDAC9")
                .notificationType("responder")
                .configs(SlackConnectionConfigArgs.builder()
                    .events(                
                        "incident.triggered",
                        "incident.acknowledged",
                        "incident.escalated",
                        "incident.resolved",
                        "incident.reassigned",
                        "incident.annotated",
                        "incident.unacknowledged",
                        "incident.delegated",
                        "incident.priority_updated",
                        "incident.responder.added",
                        "incident.responder.replied",
                        "incident.status_update_published",
                        "incident.reopened")
                    .priorities(p1.applyValue(getPriorityResult -> getPriorityResult.id()))
                    .build())
                .build());
    
        }
    }
    
    resources:
      fooTeam:
        type: pagerduty:Team
      fooSlackConnection:
        type: pagerduty:SlackConnection
        properties:
          sourceId: ${fooTeam.id}
          sourceType: team_reference
          workspaceId: T02A123LV1A
          channelId: C02CABCDAC9
          notificationType: responder
          configs:
            - events:
                - incident.triggered
                - incident.acknowledged
                - incident.escalated
                - incident.resolved
                - incident.reassigned
                - incident.annotated
                - incident.unacknowledged
                - incident.delegated
                - incident.priority_updated
                - incident.responder.added
                - incident.responder.replied
                - incident.status_update_published
                - incident.reopened
              priorities:
                - ${p1.id}
    variables:
      p1:
        fn::invoke:
          Function: pagerduty:getPriority
          Arguments:
            name: P1
    

    Create SlackConnection Resource

    new SlackConnection(name: string, args: SlackConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def SlackConnection(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        channel_id: Optional[str] = None,
                        configs: Optional[Sequence[SlackConnectionConfigArgs]] = None,
                        notification_type: Optional[str] = None,
                        source_id: Optional[str] = None,
                        source_type: Optional[str] = None,
                        workspace_id: Optional[str] = None)
    @overload
    def SlackConnection(resource_name: str,
                        args: SlackConnectionArgs,
                        opts: Optional[ResourceOptions] = None)
    func NewSlackConnection(ctx *Context, name string, args SlackConnectionArgs, opts ...ResourceOption) (*SlackConnection, error)
    public SlackConnection(string name, SlackConnectionArgs args, CustomResourceOptions? opts = null)
    public SlackConnection(String name, SlackConnectionArgs args)
    public SlackConnection(String name, SlackConnectionArgs args, CustomResourceOptions options)
    
    type: pagerduty:SlackConnection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SlackConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SlackConnectionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SlackConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SlackConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SlackConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    SlackConnection Resource Properties

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

    Inputs

    The SlackConnection resource accepts the following input properties:

    ChannelId string
    The ID of a Slack channel in the workspace.
    Configs List<SlackConnectionConfig>
    Configuration options for the Slack connection that provide options to filter events.
    NotificationType string
    Type of notification. Either responder or stakeholder.
    SourceId string
    The ID of the source in PagerDuty. Valid sources are services or teams.
    SourceType string
    The type of the source. Either team_reference or service_reference.
    WorkspaceId string
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    ChannelId string
    The ID of a Slack channel in the workspace.
    Configs []SlackConnectionConfigArgs
    Configuration options for the Slack connection that provide options to filter events.
    NotificationType string
    Type of notification. Either responder or stakeholder.
    SourceId string
    The ID of the source in PagerDuty. Valid sources are services or teams.
    SourceType string
    The type of the source. Either team_reference or service_reference.
    WorkspaceId string
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    channelId String
    The ID of a Slack channel in the workspace.
    configs List<SlackConnectionConfig>
    Configuration options for the Slack connection that provide options to filter events.
    notificationType String
    Type of notification. Either responder or stakeholder.
    sourceId String
    The ID of the source in PagerDuty. Valid sources are services or teams.
    sourceType String
    The type of the source. Either team_reference or service_reference.
    workspaceId String
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    channelId string
    The ID of a Slack channel in the workspace.
    configs SlackConnectionConfig[]
    Configuration options for the Slack connection that provide options to filter events.
    notificationType string
    Type of notification. Either responder or stakeholder.
    sourceId string
    The ID of the source in PagerDuty. Valid sources are services or teams.
    sourceType string
    The type of the source. Either team_reference or service_reference.
    workspaceId string
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    channel_id str
    The ID of a Slack channel in the workspace.
    configs Sequence[SlackConnectionConfigArgs]
    Configuration options for the Slack connection that provide options to filter events.
    notification_type str
    Type of notification. Either responder or stakeholder.
    source_id str
    The ID of the source in PagerDuty. Valid sources are services or teams.
    source_type str
    The type of the source. Either team_reference or service_reference.
    workspace_id str
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    channelId String
    The ID of a Slack channel in the workspace.
    configs List<Property Map>
    Configuration options for the Slack connection that provide options to filter events.
    notificationType String
    Type of notification. Either responder or stakeholder.
    sourceId String
    The ID of the source in PagerDuty. Valid sources are services or teams.
    sourceType String
    The type of the source. Either team_reference or service_reference.
    workspaceId String
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.

    Outputs

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

    ChannelName string
    Name of the Slack channel in Slack connection.
    Id string
    The provider-assigned unique ID for this managed resource.
    SourceName string
    Name of the source (team or service) in Slack connection.
    ChannelName string
    Name of the Slack channel in Slack connection.
    Id string
    The provider-assigned unique ID for this managed resource.
    SourceName string
    Name of the source (team or service) in Slack connection.
    channelName String
    Name of the Slack channel in Slack connection.
    id String
    The provider-assigned unique ID for this managed resource.
    sourceName String
    Name of the source (team or service) in Slack connection.
    channelName string
    Name of the Slack channel in Slack connection.
    id string
    The provider-assigned unique ID for this managed resource.
    sourceName string
    Name of the source (team or service) in Slack connection.
    channel_name str
    Name of the Slack channel in Slack connection.
    id str
    The provider-assigned unique ID for this managed resource.
    source_name str
    Name of the source (team or service) in Slack connection.
    channelName String
    Name of the Slack channel in Slack connection.
    id String
    The provider-assigned unique ID for this managed resource.
    sourceName String
    Name of the source (team or service) in Slack connection.

    Look up Existing SlackConnection Resource

    Get an existing SlackConnection 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?: SlackConnectionState, opts?: CustomResourceOptions): SlackConnection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            channel_id: Optional[str] = None,
            channel_name: Optional[str] = None,
            configs: Optional[Sequence[SlackConnectionConfigArgs]] = None,
            notification_type: Optional[str] = None,
            source_id: Optional[str] = None,
            source_name: Optional[str] = None,
            source_type: Optional[str] = None,
            workspace_id: Optional[str] = None) -> SlackConnection
    func GetSlackConnection(ctx *Context, name string, id IDInput, state *SlackConnectionState, opts ...ResourceOption) (*SlackConnection, error)
    public static SlackConnection Get(string name, Input<string> id, SlackConnectionState? state, CustomResourceOptions? opts = null)
    public static SlackConnection get(String name, Output<String> id, SlackConnectionState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    ChannelId string
    The ID of a Slack channel in the workspace.
    ChannelName string
    Name of the Slack channel in Slack connection.
    Configs List<SlackConnectionConfig>
    Configuration options for the Slack connection that provide options to filter events.
    NotificationType string
    Type of notification. Either responder or stakeholder.
    SourceId string
    The ID of the source in PagerDuty. Valid sources are services or teams.
    SourceName string
    Name of the source (team or service) in Slack connection.
    SourceType string
    The type of the source. Either team_reference or service_reference.
    WorkspaceId string
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    ChannelId string
    The ID of a Slack channel in the workspace.
    ChannelName string
    Name of the Slack channel in Slack connection.
    Configs []SlackConnectionConfigArgs
    Configuration options for the Slack connection that provide options to filter events.
    NotificationType string
    Type of notification. Either responder or stakeholder.
    SourceId string
    The ID of the source in PagerDuty. Valid sources are services or teams.
    SourceName string
    Name of the source (team or service) in Slack connection.
    SourceType string
    The type of the source. Either team_reference or service_reference.
    WorkspaceId string
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    channelId String
    The ID of a Slack channel in the workspace.
    channelName String
    Name of the Slack channel in Slack connection.
    configs List<SlackConnectionConfig>
    Configuration options for the Slack connection that provide options to filter events.
    notificationType String
    Type of notification. Either responder or stakeholder.
    sourceId String
    The ID of the source in PagerDuty. Valid sources are services or teams.
    sourceName String
    Name of the source (team or service) in Slack connection.
    sourceType String
    The type of the source. Either team_reference or service_reference.
    workspaceId String
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    channelId string
    The ID of a Slack channel in the workspace.
    channelName string
    Name of the Slack channel in Slack connection.
    configs SlackConnectionConfig[]
    Configuration options for the Slack connection that provide options to filter events.
    notificationType string
    Type of notification. Either responder or stakeholder.
    sourceId string
    The ID of the source in PagerDuty. Valid sources are services or teams.
    sourceName string
    Name of the source (team or service) in Slack connection.
    sourceType string
    The type of the source. Either team_reference or service_reference.
    workspaceId string
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    channel_id str
    The ID of a Slack channel in the workspace.
    channel_name str
    Name of the Slack channel in Slack connection.
    configs Sequence[SlackConnectionConfigArgs]
    Configuration options for the Slack connection that provide options to filter events.
    notification_type str
    Type of notification. Either responder or stakeholder.
    source_id str
    The ID of the source in PagerDuty. Valid sources are services or teams.
    source_name str
    Name of the source (team or service) in Slack connection.
    source_type str
    The type of the source. Either team_reference or service_reference.
    workspace_id str
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.
    channelId String
    The ID of a Slack channel in the workspace.
    channelName String
    Name of the Slack channel in Slack connection.
    configs List<Property Map>
    Configuration options for the Slack connection that provide options to filter events.
    notificationType String
    Type of notification. Either responder or stakeholder.
    sourceId String
    The ID of the source in PagerDuty. Valid sources are services or teams.
    sourceName String
    Name of the source (team or service) in Slack connection.
    sourceType String
    The type of the source. Either team_reference or service_reference.
    workspaceId String
    The slack team (workspace) ID of the connected Slack workspace. Can also be defined by the SLACK_CONNECTION_WORKSPACE_ID environment variable.

    Supporting Types

    SlackConnectionConfig, SlackConnectionConfigArgs

    Events List<string>
    A list of strings to filter events by PagerDuty event type. "incident.triggered" is required. The follow event types are also possible:

    • incident.acknowledged
    • incident.escalated
    • incident.resolved
    • incident.reassigned
    • incident.annotated
    • incident.unacknowledged
    • incident.delegated
    • incident.priority_updated
    • incident.responder.added
    • incident.responder.replied
    • incident.status_update_published
    • incident.reopened
    Priorities List<string>
    Allows you to filter events by priority. Needs to be an array of PagerDuty priority IDs. Available through pagerduty.getPriority data source.

    • When omitted or set to an empty array ([]) in the configuration for a Slack Connection, its default behaviour is to set priorities to No Priority value.
    • When set to ["*"] its corresponding value for priorities in Slack Connection's configuration will be Any Priority.
    Urgency string
    Allows you to filter events by urgency. Either high or low.
    Events []string
    A list of strings to filter events by PagerDuty event type. "incident.triggered" is required. The follow event types are also possible:

    • incident.acknowledged
    • incident.escalated
    • incident.resolved
    • incident.reassigned
    • incident.annotated
    • incident.unacknowledged
    • incident.delegated
    • incident.priority_updated
    • incident.responder.added
    • incident.responder.replied
    • incident.status_update_published
    • incident.reopened
    Priorities []string
    Allows you to filter events by priority. Needs to be an array of PagerDuty priority IDs. Available through pagerduty.getPriority data source.

    • When omitted or set to an empty array ([]) in the configuration for a Slack Connection, its default behaviour is to set priorities to No Priority value.
    • When set to ["*"] its corresponding value for priorities in Slack Connection's configuration will be Any Priority.
    Urgency string
    Allows you to filter events by urgency. Either high or low.
    events List<String>
    A list of strings to filter events by PagerDuty event type. "incident.triggered" is required. The follow event types are also possible:

    • incident.acknowledged
    • incident.escalated
    • incident.resolved
    • incident.reassigned
    • incident.annotated
    • incident.unacknowledged
    • incident.delegated
    • incident.priority_updated
    • incident.responder.added
    • incident.responder.replied
    • incident.status_update_published
    • incident.reopened
    priorities List<String>
    Allows you to filter events by priority. Needs to be an array of PagerDuty priority IDs. Available through pagerduty.getPriority data source.

    • When omitted or set to an empty array ([]) in the configuration for a Slack Connection, its default behaviour is to set priorities to No Priority value.
    • When set to ["*"] its corresponding value for priorities in Slack Connection's configuration will be Any Priority.
    urgency String
    Allows you to filter events by urgency. Either high or low.
    events string[]
    A list of strings to filter events by PagerDuty event type. "incident.triggered" is required. The follow event types are also possible:

    • incident.acknowledged
    • incident.escalated
    • incident.resolved
    • incident.reassigned
    • incident.annotated
    • incident.unacknowledged
    • incident.delegated
    • incident.priority_updated
    • incident.responder.added
    • incident.responder.replied
    • incident.status_update_published
    • incident.reopened
    priorities string[]
    Allows you to filter events by priority. Needs to be an array of PagerDuty priority IDs. Available through pagerduty.getPriority data source.

    • When omitted or set to an empty array ([]) in the configuration for a Slack Connection, its default behaviour is to set priorities to No Priority value.
    • When set to ["*"] its corresponding value for priorities in Slack Connection's configuration will be Any Priority.
    urgency string
    Allows you to filter events by urgency. Either high or low.
    events Sequence[str]
    A list of strings to filter events by PagerDuty event type. "incident.triggered" is required. The follow event types are also possible:

    • incident.acknowledged
    • incident.escalated
    • incident.resolved
    • incident.reassigned
    • incident.annotated
    • incident.unacknowledged
    • incident.delegated
    • incident.priority_updated
    • incident.responder.added
    • incident.responder.replied
    • incident.status_update_published
    • incident.reopened
    priorities Sequence[str]
    Allows you to filter events by priority. Needs to be an array of PagerDuty priority IDs. Available through pagerduty.getPriority data source.

    • When omitted or set to an empty array ([]) in the configuration for a Slack Connection, its default behaviour is to set priorities to No Priority value.
    • When set to ["*"] its corresponding value for priorities in Slack Connection's configuration will be Any Priority.
    urgency str
    Allows you to filter events by urgency. Either high or low.
    events List<String>
    A list of strings to filter events by PagerDuty event type. "incident.triggered" is required. The follow event types are also possible:

    • incident.acknowledged
    • incident.escalated
    • incident.resolved
    • incident.reassigned
    • incident.annotated
    • incident.unacknowledged
    • incident.delegated
    • incident.priority_updated
    • incident.responder.added
    • incident.responder.replied
    • incident.status_update_published
    • incident.reopened
    priorities List<String>
    Allows you to filter events by priority. Needs to be an array of PagerDuty priority IDs. Available through pagerduty.getPriority data source.

    • When omitted or set to an empty array ([]) in the configuration for a Slack Connection, its default behaviour is to set priorities to No Priority value.
    • When set to ["*"] its corresponding value for priorities in Slack Connection's configuration will be Any Priority.
    urgency String
    Allows you to filter events by urgency. Either high or low.

    Import

    Slack connections can be imported using the related workspace ID and the slack_connection ID separated by a dot, e.g.

    $ pulumi import pagerduty:index/slackConnection:SlackConnection main T02A123LV1A.PUABCDL
    

    Package Details

    Repository
    PagerDuty pulumi/pulumi-pagerduty
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the pagerduty Terraform Provider.
    pagerduty logo
    PagerDuty v4.10.1 published on Wednesday, Mar 27, 2024 by Pulumi