sysdig.SecureNotificationChannelPagerduty
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sysdig from "@pulumi/sysdig";
const sample_pagerduty = new sysdig.SecureNotificationChannelPagerduty("sample-pagerduty", {
    account: "account",
    enabled: true,
    notifyWhenOk: false,
    notifyWhenResolved: false,
    sendTestNotification: false,
    serviceKey: "XXXXXXXXXX",
    serviceName: "sysdig",
});
import pulumi
import pulumi_sysdig as sysdig
sample_pagerduty = sysdig.SecureNotificationChannelPagerduty("sample-pagerduty",
    account="account",
    enabled=True,
    notify_when_ok=False,
    notify_when_resolved=False,
    send_test_notification=False,
    service_key="XXXXXXXXXX",
    service_name="sysdig")
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/sysdig/sysdig"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sysdig.NewSecureNotificationChannelPagerduty(ctx, "sample-pagerduty", &sysdig.SecureNotificationChannelPagerdutyArgs{
			Account:              pulumi.String("account"),
			Enabled:              pulumi.Bool(true),
			NotifyWhenOk:         pulumi.Bool(false),
			NotifyWhenResolved:   pulumi.Bool(false),
			SendTestNotification: pulumi.Bool(false),
			ServiceKey:           pulumi.String("XXXXXXXXXX"),
			ServiceName:          pulumi.String("sysdig"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sysdig = Pulumi.Sysdig;
return await Deployment.RunAsync(() => 
{
    var sample_pagerduty = new Sysdig.SecureNotificationChannelPagerduty("sample-pagerduty", new()
    {
        Account = "account",
        Enabled = true,
        NotifyWhenOk = false,
        NotifyWhenResolved = false,
        SendTestNotification = false,
        ServiceKey = "XXXXXXXXXX",
        ServiceName = "sysdig",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sysdig.SecureNotificationChannelPagerduty;
import com.pulumi.sysdig.SecureNotificationChannelPagerdutyArgs;
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 sample_pagerduty = new SecureNotificationChannelPagerduty("sample-pagerduty", SecureNotificationChannelPagerdutyArgs.builder()
            .account("account")
            .enabled(true)
            .notifyWhenOk(false)
            .notifyWhenResolved(false)
            .sendTestNotification(false)
            .serviceKey("XXXXXXXXXX")
            .serviceName("sysdig")
            .build());
    }
}
resources:
  sample-pagerduty:
    type: sysdig:SecureNotificationChannelPagerduty
    properties:
      account: account
      enabled: true
      notifyWhenOk: false
      notifyWhenResolved: false
      sendTestNotification: false
      serviceKey: XXXXXXXXXX
      serviceName: sysdig
Create SecureNotificationChannelPagerduty Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecureNotificationChannelPagerduty(name: string, args: SecureNotificationChannelPagerdutyArgs, opts?: CustomResourceOptions);@overload
def SecureNotificationChannelPagerduty(resource_name: str,
                                       args: SecureNotificationChannelPagerdutyArgs,
                                       opts: Optional[ResourceOptions] = None)
@overload
def SecureNotificationChannelPagerduty(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       account: Optional[str] = None,
                                       service_key: Optional[str] = None,
                                       service_name: Optional[str] = None,
                                       enabled: Optional[bool] = None,
                                       name: Optional[str] = None,
                                       notify_when_ok: Optional[bool] = None,
                                       notify_when_resolved: Optional[bool] = None,
                                       secure_notification_channel_pagerduty_id: Optional[str] = None,
                                       send_test_notification: Optional[bool] = None,
                                       share_with_current_team: Optional[bool] = None,
                                       timeouts: Optional[SecureNotificationChannelPagerdutyTimeoutsArgs] = None)func NewSecureNotificationChannelPagerduty(ctx *Context, name string, args SecureNotificationChannelPagerdutyArgs, opts ...ResourceOption) (*SecureNotificationChannelPagerduty, error)public SecureNotificationChannelPagerduty(string name, SecureNotificationChannelPagerdutyArgs args, CustomResourceOptions? opts = null)
public SecureNotificationChannelPagerduty(String name, SecureNotificationChannelPagerdutyArgs args)
public SecureNotificationChannelPagerduty(String name, SecureNotificationChannelPagerdutyArgs args, CustomResourceOptions options)
type: sysdig:SecureNotificationChannelPagerduty
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SecureNotificationChannelPagerdutyArgs
- 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 SecureNotificationChannelPagerdutyArgs
- 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 SecureNotificationChannelPagerdutyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecureNotificationChannelPagerdutyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecureNotificationChannelPagerdutyArgs
- 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 secureNotificationChannelPagerdutyResource = new Sysdig.SecureNotificationChannelPagerduty("secureNotificationChannelPagerdutyResource", new()
{
    Account = "string",
    ServiceKey = "string",
    ServiceName = "string",
    Enabled = false,
    Name = "string",
    NotifyWhenOk = false,
    NotifyWhenResolved = false,
    SecureNotificationChannelPagerdutyId = "string",
    SendTestNotification = false,
    ShareWithCurrentTeam = false,
    Timeouts = new Sysdig.Inputs.SecureNotificationChannelPagerdutyTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Read = "string",
        Update = "string",
    },
});
example, err := sysdig.NewSecureNotificationChannelPagerduty(ctx, "secureNotificationChannelPagerdutyResource", &sysdig.SecureNotificationChannelPagerdutyArgs{
Account: pulumi.String("string"),
ServiceKey: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Name: pulumi.String("string"),
NotifyWhenOk: pulumi.Bool(false),
NotifyWhenResolved: pulumi.Bool(false),
SecureNotificationChannelPagerdutyId: pulumi.String("string"),
SendTestNotification: pulumi.Bool(false),
ShareWithCurrentTeam: pulumi.Bool(false),
Timeouts: &.SecureNotificationChannelPagerdutyTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var secureNotificationChannelPagerdutyResource = new SecureNotificationChannelPagerduty("secureNotificationChannelPagerdutyResource", SecureNotificationChannelPagerdutyArgs.builder()
    .account("string")
    .serviceKey("string")
    .serviceName("string")
    .enabled(false)
    .name("string")
    .notifyWhenOk(false)
    .notifyWhenResolved(false)
    .secureNotificationChannelPagerdutyId("string")
    .sendTestNotification(false)
    .shareWithCurrentTeam(false)
    .timeouts(SecureNotificationChannelPagerdutyTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .read("string")
        .update("string")
        .build())
    .build());
secure_notification_channel_pagerduty_resource = sysdig.SecureNotificationChannelPagerduty("secureNotificationChannelPagerdutyResource",
    account="string",
    service_key="string",
    service_name="string",
    enabled=False,
    name="string",
    notify_when_ok=False,
    notify_when_resolved=False,
    secure_notification_channel_pagerduty_id="string",
    send_test_notification=False,
    share_with_current_team=False,
    timeouts={
        "create": "string",
        "delete": "string",
        "read": "string",
        "update": "string",
    })
const secureNotificationChannelPagerdutyResource = new sysdig.SecureNotificationChannelPagerduty("secureNotificationChannelPagerdutyResource", {
    account: "string",
    serviceKey: "string",
    serviceName: "string",
    enabled: false,
    name: "string",
    notifyWhenOk: false,
    notifyWhenResolved: false,
    secureNotificationChannelPagerdutyId: "string",
    sendTestNotification: false,
    shareWithCurrentTeam: false,
    timeouts: {
        create: "string",
        "delete": "string",
        read: "string",
        update: "string",
    },
});
type: sysdig:SecureNotificationChannelPagerduty
properties:
    account: string
    enabled: false
    name: string
    notifyWhenOk: false
    notifyWhenResolved: false
    secureNotificationChannelPagerdutyId: string
    sendTestNotification: false
    serviceKey: string
    serviceName: string
    shareWithCurrentTeam: false
    timeouts:
        create: string
        delete: string
        read: string
        update: string
SecureNotificationChannelPagerduty 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 SecureNotificationChannelPagerduty resource accepts the following input properties:
- Account string
- Pagerduty account.
- ServiceKey string
- Service Key for the Pagerduty account.
- ServiceName string
- Service name for the Pagerduty account.
- Enabled bool
- If false, the channel will not emit notifications. Default is true.
- Name string
- The name of the Notification Channel. Must be unique.
- NotifyWhen boolOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- NotifyWhen boolResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- SecureNotification stringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- SendTest boolNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- bool
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- Timeouts
SecureNotification Channel Pagerduty Timeouts 
- Account string
- Pagerduty account.
- ServiceKey string
- Service Key for the Pagerduty account.
- ServiceName string
- Service name for the Pagerduty account.
- Enabled bool
- If false, the channel will not emit notifications. Default is true.
- Name string
- The name of the Notification Channel. Must be unique.
- NotifyWhen boolOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- NotifyWhen boolResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- SecureNotification stringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- SendTest boolNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- bool
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- Timeouts
SecureNotification Channel Pagerduty Timeouts Args 
- account String
- Pagerduty account.
- serviceKey String
- Service Key for the Pagerduty account.
- serviceName String
- Service name for the Pagerduty account.
- enabled Boolean
- If false, the channel will not emit notifications. Default is true.
- name String
- The name of the Notification Channel. Must be unique.
- notifyWhen BooleanOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- notifyWhen BooleanResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- secureNotification StringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- sendTest BooleanNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- Boolean
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- timeouts
SecureNotification Channel Pagerduty Timeouts 
- account string
- Pagerduty account.
- serviceKey string
- Service Key for the Pagerduty account.
- serviceName string
- Service name for the Pagerduty account.
- enabled boolean
- If false, the channel will not emit notifications. Default is true.
- name string
- The name of the Notification Channel. Must be unique.
- notifyWhen booleanOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- notifyWhen booleanResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- secureNotification stringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- sendTest booleanNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- boolean
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- timeouts
SecureNotification Channel Pagerduty Timeouts 
- account str
- Pagerduty account.
- service_key str
- Service Key for the Pagerduty account.
- service_name str
- Service name for the Pagerduty account.
- enabled bool
- If false, the channel will not emit notifications. Default is true.
- name str
- The name of the Notification Channel. Must be unique.
- notify_when_ boolok 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- notify_when_ boolresolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- secure_notification_ strchannel_ pagerduty_ id 
- (Computed) The ID of the Notification Channel.
- send_test_ boolnotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- bool
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- timeouts
SecureNotification Channel Pagerduty Timeouts Args 
- account String
- Pagerduty account.
- serviceKey String
- Service Key for the Pagerduty account.
- serviceName String
- Service name for the Pagerduty account.
- enabled Boolean
- If false, the channel will not emit notifications. Default is true.
- name String
- The name of the Notification Channel. Must be unique.
- notifyWhen BooleanOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- notifyWhen BooleanResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- secureNotification StringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- sendTest BooleanNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- Boolean
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the SecureNotificationChannelPagerduty resource produces the following output properties:
Look up Existing SecureNotificationChannelPagerduty Resource
Get an existing SecureNotificationChannelPagerduty 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?: SecureNotificationChannelPagerdutyState, opts?: CustomResourceOptions): SecureNotificationChannelPagerduty@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account: Optional[str] = None,
        enabled: Optional[bool] = None,
        name: Optional[str] = None,
        notify_when_ok: Optional[bool] = None,
        notify_when_resolved: Optional[bool] = None,
        secure_notification_channel_pagerduty_id: Optional[str] = None,
        send_test_notification: Optional[bool] = None,
        service_key: Optional[str] = None,
        service_name: Optional[str] = None,
        share_with_current_team: Optional[bool] = None,
        timeouts: Optional[SecureNotificationChannelPagerdutyTimeoutsArgs] = None,
        version: Optional[float] = None) -> SecureNotificationChannelPagerdutyfunc GetSecureNotificationChannelPagerduty(ctx *Context, name string, id IDInput, state *SecureNotificationChannelPagerdutyState, opts ...ResourceOption) (*SecureNotificationChannelPagerduty, error)public static SecureNotificationChannelPagerduty Get(string name, Input<string> id, SecureNotificationChannelPagerdutyState? state, CustomResourceOptions? opts = null)public static SecureNotificationChannelPagerduty get(String name, Output<String> id, SecureNotificationChannelPagerdutyState state, CustomResourceOptions options)resources:  _:    type: sysdig:SecureNotificationChannelPagerduty    get:      id: ${id}- 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.
- Account string
- Pagerduty account.
- Enabled bool
- If false, the channel will not emit notifications. Default is true.
- Name string
- The name of the Notification Channel. Must be unique.
- NotifyWhen boolOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- NotifyWhen boolResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- SecureNotification stringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- SendTest boolNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- ServiceKey string
- Service Key for the Pagerduty account.
- ServiceName string
- Service name for the Pagerduty account.
- bool
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- Timeouts
SecureNotification Channel Pagerduty Timeouts 
- Version double
- (Computed) The current version of the Notification Channel.
- Account string
- Pagerduty account.
- Enabled bool
- If false, the channel will not emit notifications. Default is true.
- Name string
- The name of the Notification Channel. Must be unique.
- NotifyWhen boolOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- NotifyWhen boolResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- SecureNotification stringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- SendTest boolNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- ServiceKey string
- Service Key for the Pagerduty account.
- ServiceName string
- Service name for the Pagerduty account.
- bool
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- Timeouts
SecureNotification Channel Pagerduty Timeouts Args 
- Version float64
- (Computed) The current version of the Notification Channel.
- account String
- Pagerduty account.
- enabled Boolean
- If false, the channel will not emit notifications. Default is true.
- name String
- The name of the Notification Channel. Must be unique.
- notifyWhen BooleanOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- notifyWhen BooleanResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- secureNotification StringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- sendTest BooleanNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- serviceKey String
- Service Key for the Pagerduty account.
- serviceName String
- Service name for the Pagerduty account.
- Boolean
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- timeouts
SecureNotification Channel Pagerduty Timeouts 
- version Double
- (Computed) The current version of the Notification Channel.
- account string
- Pagerduty account.
- enabled boolean
- If false, the channel will not emit notifications. Default is true.
- name string
- The name of the Notification Channel. Must be unique.
- notifyWhen booleanOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- notifyWhen booleanResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- secureNotification stringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- sendTest booleanNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- serviceKey string
- Service Key for the Pagerduty account.
- serviceName string
- Service name for the Pagerduty account.
- boolean
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- timeouts
SecureNotification Channel Pagerduty Timeouts 
- version number
- (Computed) The current version of the Notification Channel.
- account str
- Pagerduty account.
- enabled bool
- If false, the channel will not emit notifications. Default is true.
- name str
- The name of the Notification Channel. Must be unique.
- notify_when_ boolok 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- notify_when_ boolresolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- secure_notification_ strchannel_ pagerduty_ id 
- (Computed) The ID of the Notification Channel.
- send_test_ boolnotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- service_key str
- Service Key for the Pagerduty account.
- service_name str
- Service name for the Pagerduty account.
- bool
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- timeouts
SecureNotification Channel Pagerduty Timeouts Args 
- version float
- (Computed) The current version of the Notification Channel.
- account String
- Pagerduty account.
- enabled Boolean
- If false, the channel will not emit notifications. Default is true.
- name String
- The name of the Notification Channel. Must be unique.
- notifyWhen BooleanOk 
- Send a new notification when the alert condition is no longer triggered. Default is false.
- notifyWhen BooleanResolved 
- Send a new notification when the alert is manually acknowledged by a user. Default is false.
- secureNotification StringChannel Pagerduty Id 
- (Computed) The ID of the Notification Channel.
- sendTest BooleanNotification 
- Send an initial test notification to check if the notification channel is working. Default is false.
- serviceKey String
- Service Key for the Pagerduty account.
- serviceName String
- Service name for the Pagerduty account.
- Boolean
- (Optional) If set to trueit will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see aerror: 403 Forbiddenif this is not set totrue.
- timeouts Property Map
- version Number
- (Computed) The current version of the Notification Channel.
Supporting Types
SecureNotificationChannelPagerdutyTimeouts, SecureNotificationChannelPagerdutyTimeoutsArgs          
Import
Pagerduty notification channels for Secure can be imported using the ID, e.g.
$ pulumi import sysdig:index/secureNotificationChannelPagerduty:SecureNotificationChannelPagerduty example 12345
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sysdig sysdiglabs/terraform-provider-sysdig
- License
- Notes
- This Pulumi package is based on the sysdigTerraform Provider.