1. Packages
  2. Checkly
  3. API Docs
  4. AlertChannel
Checkly v2.1.1 published on Tuesday, Mar 11, 2025 by Checkly

checkly.AlertChannel

Explore with Pulumi AI

checkly logo
Checkly v2.1.1 published on Tuesday, Mar 11, 2025 by Checkly

    Allows you to define alerting channels for the checks and groups in your account

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkly from "@checkly/pulumi";
    
    // An Email alert channel
    const emailAc = new checkly.AlertChannel("email_ac", {
        email: {
            address: "john@example.com",
        },
        sendRecovery: true,
        sendFailure: false,
        sendDegraded: true,
        sslExpiry: true,
        sslExpiryThreshold: 22,
    });
    // A SMS alert channel
    const smsAc = new checkly.AlertChannel("sms_ac", {
        sms: {
            name: "john",
            number: "+5491100001111",
        },
        sendRecovery: true,
        sendFailure: true,
    });
    // A Slack alert channel
    const slackAc = new checkly.AlertChannel("slack_ac", {slack: {
        channel: "#checkly-notifications",
        url: "https://hooks.slack.com/services/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",
    }});
    // An Opsgenie alert channel
    const opsgenieAc = new checkly.AlertChannel("opsgenie_ac", {opsgenie: {
        name: "opsalerts",
        apiKey: "fookey",
        region: "fooregion",
        priority: "foopriority",
    }});
    // A Pagerduty alert channel
    const pagerdutyAc = new checkly.AlertChannel("pagerduty_ac", {pagerduty: {
        account: "checkly",
        serviceKey: "key1",
        serviceName: "pdalert",
    }});
    // A Webhook alert channel
    const webhookAc = new checkly.AlertChannel("webhook_ac", {webhook: {
        name: "foo",
        method: "get",
        template: "footemplate",
        url: "https://example.com/foo",
        webhookSecret: "foosecret",
    }});
    // A Firehydran alert channel integration
    const firehydrantAc = new checkly.AlertChannel("firehydrant_ac", {webhook: {
        name: "firehydrant",
        method: "post",
        template: `{
      "event": "{{ALERT_TITLE}}",
      "link": "{{RESULT_LINK}}",
      "check_id": "{{CHECK_ID}}",
      "check_type": "{{CHECK_TYPE}}",
      "alert_type": "{{ALERT_TYPE}}",
      "started_at": "{{STARTED_AT}}",
      "check_result_id": "{{CHECK_RESULT_ID}}"
    },
    `,
        url: "https://app.firehydrant.io/integrations/alerting/webhooks/2/checkly",
        webhookType: "WEBHOOK_FIREHYDRANT",
    }});
    // Connecting the alert channel to a check
    const exampleCheck = new checkly.Check("example_check", {
        name: "Example check",
        alertChannelSubscriptions: [
            {
                channelId: emailAc.id,
                activated: true,
            },
            {
                channelId: smsAc.id,
                activated: true,
            },
        ],
    });
    
    import pulumi
    import pulumi_checkly as checkly
    
    # An Email alert channel
    email_ac = checkly.AlertChannel("email_ac",
        email={
            "address": "john@example.com",
        },
        send_recovery=True,
        send_failure=False,
        send_degraded=True,
        ssl_expiry=True,
        ssl_expiry_threshold=22)
    # A SMS alert channel
    sms_ac = checkly.AlertChannel("sms_ac",
        sms={
            "name": "john",
            "number": "+5491100001111",
        },
        send_recovery=True,
        send_failure=True)
    # A Slack alert channel
    slack_ac = checkly.AlertChannel("slack_ac", slack={
        "channel": "#checkly-notifications",
        "url": "https://hooks.slack.com/services/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",
    })
    # An Opsgenie alert channel
    opsgenie_ac = checkly.AlertChannel("opsgenie_ac", opsgenie={
        "name": "opsalerts",
        "api_key": "fookey",
        "region": "fooregion",
        "priority": "foopriority",
    })
    # A Pagerduty alert channel
    pagerduty_ac = checkly.AlertChannel("pagerduty_ac", pagerduty={
        "account": "checkly",
        "service_key": "key1",
        "service_name": "pdalert",
    })
    # A Webhook alert channel
    webhook_ac = checkly.AlertChannel("webhook_ac", webhook={
        "name": "foo",
        "method": "get",
        "template": "footemplate",
        "url": "https://example.com/foo",
        "webhook_secret": "foosecret",
    })
    # A Firehydran alert channel integration
    firehydrant_ac = checkly.AlertChannel("firehydrant_ac", webhook={
        "name": "firehydrant",
        "method": "post",
        "template": """{
      "event": "{{ALERT_TITLE}}",
      "link": "{{RESULT_LINK}}",
      "check_id": "{{CHECK_ID}}",
      "check_type": "{{CHECK_TYPE}}",
      "alert_type": "{{ALERT_TYPE}}",
      "started_at": "{{STARTED_AT}}",
      "check_result_id": "{{CHECK_RESULT_ID}}"
    },
    """,
        "url": "https://app.firehydrant.io/integrations/alerting/webhooks/2/checkly",
        "webhook_type": "WEBHOOK_FIREHYDRANT",
    })
    # Connecting the alert channel to a check
    example_check = checkly.Check("example_check",
        name="Example check",
        alert_channel_subscriptions=[
            {
                "channel_id": email_ac.id,
                "activated": True,
            },
            {
                "channel_id": sms_ac.id,
                "activated": True,
            },
        ])
    
    package main
    
    import (
    	"github.com/checkly/pulumi-checkly/sdk/v2/go/checkly"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// An Email alert channel
    		emailAc, err := checkly.NewAlertChannel(ctx, "email_ac", &checkly.AlertChannelArgs{
    			Email: &checkly.AlertChannelEmailArgs{
    				Address: pulumi.String("john@example.com"),
    			},
    			SendRecovery:       pulumi.Bool(true),
    			SendFailure:        pulumi.Bool(false),
    			SendDegraded:       pulumi.Bool(true),
    			SslExpiry:          pulumi.Bool(true),
    			SslExpiryThreshold: pulumi.Int(22),
    		})
    		if err != nil {
    			return err
    		}
    		// A SMS alert channel
    		smsAc, err := checkly.NewAlertChannel(ctx, "sms_ac", &checkly.AlertChannelArgs{
    			Sms: &checkly.AlertChannelSmsArgs{
    				Name:   pulumi.String("john"),
    				Number: pulumi.String("+5491100001111"),
    			},
    			SendRecovery: pulumi.Bool(true),
    			SendFailure:  pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		// A Slack alert channel
    		_, err = checkly.NewAlertChannel(ctx, "slack_ac", &checkly.AlertChannelArgs{
    			Slack: &checkly.AlertChannelSlackArgs{
    				Channel: pulumi.String("#checkly-notifications"),
    				Url:     pulumi.String("https://hooks.slack.com/services/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"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// An Opsgenie alert channel
    		_, err = checkly.NewAlertChannel(ctx, "opsgenie_ac", &checkly.AlertChannelArgs{
    			Opsgenie: &checkly.AlertChannelOpsgenieArgs{
    				Name:     pulumi.String("opsalerts"),
    				ApiKey:   pulumi.String("fookey"),
    				Region:   pulumi.String("fooregion"),
    				Priority: pulumi.String("foopriority"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// A Pagerduty alert channel
    		_, err = checkly.NewAlertChannel(ctx, "pagerduty_ac", &checkly.AlertChannelArgs{
    			Pagerduty: &checkly.AlertChannelPagerdutyArgs{
    				Account:     pulumi.String("checkly"),
    				ServiceKey:  pulumi.String("key1"),
    				ServiceName: pulumi.String("pdalert"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// A Webhook alert channel
    		_, err = checkly.NewAlertChannel(ctx, "webhook_ac", &checkly.AlertChannelArgs{
    			Webhook: &checkly.AlertChannelWebhookArgs{
    				Name:          pulumi.String("foo"),
    				Method:        pulumi.String("get"),
    				Template:      pulumi.String("footemplate"),
    				Url:           pulumi.String("https://example.com/foo"),
    				WebhookSecret: pulumi.String("foosecret"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// A Firehydran alert channel integration
    		_, err = checkly.NewAlertChannel(ctx, "firehydrant_ac", &checkly.AlertChannelArgs{
    			Webhook: &checkly.AlertChannelWebhookArgs{
    				Name:   pulumi.String("firehydrant"),
    				Method: pulumi.String("post"),
    				Template: pulumi.String(`{
      "event": "{{ALERT_TITLE}}",
      "link": "{{RESULT_LINK}}",
      "check_id": "{{CHECK_ID}}",
      "check_type": "{{CHECK_TYPE}}",
      "alert_type": "{{ALERT_TYPE}}",
      "started_at": "{{STARTED_AT}}",
      "check_result_id": "{{CHECK_RESULT_ID}}"
    },
    `),
    				Url:         pulumi.String("https://app.firehydrant.io/integrations/alerting/webhooks/2/checkly"),
    				WebhookType: pulumi.String("WEBHOOK_FIREHYDRANT"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Connecting the alert channel to a check
    		_, err = checkly.NewCheck(ctx, "example_check", &checkly.CheckArgs{
    			Name: pulumi.String("Example check"),
    			AlertChannelSubscriptions: checkly.CheckAlertChannelSubscriptionArray{
    				&checkly.CheckAlertChannelSubscriptionArgs{
    					ChannelId: emailAc.ID(),
    					Activated: pulumi.Bool(true),
    				},
    				&checkly.CheckAlertChannelSubscriptionArgs{
    					ChannelId: smsAc.ID(),
    					Activated: pulumi.Bool(true),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkly = Pulumi.Checkly;
    
    return await Deployment.RunAsync(() => 
    {
        // An Email alert channel
        var emailAc = new Checkly.AlertChannel("email_ac", new()
        {
            Email = new Checkly.Inputs.AlertChannelEmailArgs
            {
                Address = "john@example.com",
            },
            SendRecovery = true,
            SendFailure = false,
            SendDegraded = true,
            SslExpiry = true,
            SslExpiryThreshold = 22,
        });
    
        // A SMS alert channel
        var smsAc = new Checkly.AlertChannel("sms_ac", new()
        {
            Sms = new Checkly.Inputs.AlertChannelSmsArgs
            {
                Name = "john",
                Number = "+5491100001111",
            },
            SendRecovery = true,
            SendFailure = true,
        });
    
        // A Slack alert channel
        var slackAc = new Checkly.AlertChannel("slack_ac", new()
        {
            Slack = new Checkly.Inputs.AlertChannelSlackArgs
            {
                Channel = "#checkly-notifications",
                Url = "https://hooks.slack.com/services/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",
            },
        });
    
        // An Opsgenie alert channel
        var opsgenieAc = new Checkly.AlertChannel("opsgenie_ac", new()
        {
            Opsgenie = new Checkly.Inputs.AlertChannelOpsgenieArgs
            {
                Name = "opsalerts",
                ApiKey = "fookey",
                Region = "fooregion",
                Priority = "foopriority",
            },
        });
    
        // A Pagerduty alert channel
        var pagerdutyAc = new Checkly.AlertChannel("pagerduty_ac", new()
        {
            Pagerduty = new Checkly.Inputs.AlertChannelPagerdutyArgs
            {
                Account = "checkly",
                ServiceKey = "key1",
                ServiceName = "pdalert",
            },
        });
    
        // A Webhook alert channel
        var webhookAc = new Checkly.AlertChannel("webhook_ac", new()
        {
            Webhook = new Checkly.Inputs.AlertChannelWebhookArgs
            {
                Name = "foo",
                Method = "get",
                Template = "footemplate",
                Url = "https://example.com/foo",
                WebhookSecret = "foosecret",
            },
        });
    
        // A Firehydran alert channel integration
        var firehydrantAc = new Checkly.AlertChannel("firehydrant_ac", new()
        {
            Webhook = new Checkly.Inputs.AlertChannelWebhookArgs
            {
                Name = "firehydrant",
                Method = "post",
                Template = @"{
      ""event"": ""{{ALERT_TITLE}}"",
      ""link"": ""{{RESULT_LINK}}"",
      ""check_id"": ""{{CHECK_ID}}"",
      ""check_type"": ""{{CHECK_TYPE}}"",
      ""alert_type"": ""{{ALERT_TYPE}}"",
      ""started_at"": ""{{STARTED_AT}}"",
      ""check_result_id"": ""{{CHECK_RESULT_ID}}""
    },
    ",
                Url = "https://app.firehydrant.io/integrations/alerting/webhooks/2/checkly",
                WebhookType = "WEBHOOK_FIREHYDRANT",
            },
        });
    
        // Connecting the alert channel to a check
        var exampleCheck = new Checkly.Check("example_check", new()
        {
            Name = "Example check",
            AlertChannelSubscriptions = new[]
            {
                new Checkly.Inputs.CheckAlertChannelSubscriptionArgs
                {
                    ChannelId = emailAc.Id,
                    Activated = true,
                },
                new Checkly.Inputs.CheckAlertChannelSubscriptionArgs
                {
                    ChannelId = smsAc.Id,
                    Activated = true,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkly.AlertChannel;
    import com.pulumi.checkly.AlertChannelArgs;
    import com.pulumi.checkly.inputs.AlertChannelEmailArgs;
    import com.pulumi.checkly.inputs.AlertChannelSmsArgs;
    import com.pulumi.checkly.inputs.AlertChannelSlackArgs;
    import com.pulumi.checkly.inputs.AlertChannelOpsgenieArgs;
    import com.pulumi.checkly.inputs.AlertChannelPagerdutyArgs;
    import com.pulumi.checkly.inputs.AlertChannelWebhookArgs;
    import com.pulumi.checkly.Check;
    import com.pulumi.checkly.CheckArgs;
    import com.pulumi.checkly.inputs.CheckAlertChannelSubscriptionArgs;
    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) {
            // An Email alert channel
            var emailAc = new AlertChannel("emailAc", AlertChannelArgs.builder()
                .email(AlertChannelEmailArgs.builder()
                    .address("john@example.com")
                    .build())
                .sendRecovery(true)
                .sendFailure(false)
                .sendDegraded(true)
                .sslExpiry(true)
                .sslExpiryThreshold(22)
                .build());
    
            // A SMS alert channel
            var smsAc = new AlertChannel("smsAc", AlertChannelArgs.builder()
                .sms(AlertChannelSmsArgs.builder()
                    .name("john")
                    .number("+5491100001111")
                    .build())
                .sendRecovery(true)
                .sendFailure(true)
                .build());
    
            // A Slack alert channel
            var slackAc = new AlertChannel("slackAc", AlertChannelArgs.builder()
                .slack(AlertChannelSlackArgs.builder()
                    .channel("#checkly-notifications")
                    .url("https://hooks.slack.com/services/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")
                    .build())
                .build());
    
            // An Opsgenie alert channel
            var opsgenieAc = new AlertChannel("opsgenieAc", AlertChannelArgs.builder()
                .opsgenie(AlertChannelOpsgenieArgs.builder()
                    .name("opsalerts")
                    .apiKey("fookey")
                    .region("fooregion")
                    .priority("foopriority")
                    .build())
                .build());
    
            // A Pagerduty alert channel
            var pagerdutyAc = new AlertChannel("pagerdutyAc", AlertChannelArgs.builder()
                .pagerduty(AlertChannelPagerdutyArgs.builder()
                    .account("checkly")
                    .serviceKey("key1")
                    .serviceName("pdalert")
                    .build())
                .build());
    
            // A Webhook alert channel
            var webhookAc = new AlertChannel("webhookAc", AlertChannelArgs.builder()
                .webhook(AlertChannelWebhookArgs.builder()
                    .name("foo")
                    .method("get")
                    .template("footemplate")
                    .url("https://example.com/foo")
                    .webhookSecret("foosecret")
                    .build())
                .build());
    
            // A Firehydran alert channel integration
            var firehydrantAc = new AlertChannel("firehydrantAc", AlertChannelArgs.builder()
                .webhook(AlertChannelWebhookArgs.builder()
                    .name("firehydrant")
                    .method("post")
                    .template("""
    {
      "event": "{{ALERT_TITLE}}",
      "link": "{{RESULT_LINK}}",
      "check_id": "{{CHECK_ID}}",
      "check_type": "{{CHECK_TYPE}}",
      "alert_type": "{{ALERT_TYPE}}",
      "started_at": "{{STARTED_AT}}",
      "check_result_id": "{{CHECK_RESULT_ID}}"
    },
                    """)
                    .url("https://app.firehydrant.io/integrations/alerting/webhooks/2/checkly")
                    .webhookType("WEBHOOK_FIREHYDRANT")
                    .build())
                .build());
    
            // Connecting the alert channel to a check
            var exampleCheck = new Check("exampleCheck", CheckArgs.builder()
                .name("Example check")
                .alertChannelSubscriptions(            
                    CheckAlertChannelSubscriptionArgs.builder()
                        .channelId(emailAc.id())
                        .activated(true)
                        .build(),
                    CheckAlertChannelSubscriptionArgs.builder()
                        .channelId(smsAc.id())
                        .activated(true)
                        .build())
                .build());
    
        }
    }
    
    resources:
      # An Email alert channel
      emailAc:
        type: checkly:AlertChannel
        name: email_ac
        properties:
          email:
            address: john@example.com
          sendRecovery: true
          sendFailure: false
          sendDegraded: true
          sslExpiry: true
          sslExpiryThreshold: 22
      # A SMS alert channel
      smsAc:
        type: checkly:AlertChannel
        name: sms_ac
        properties:
          sms:
            name: john
            number: '+5491100001111'
          sendRecovery: true
          sendFailure: true
      # A Slack alert channel
      slackAc:
        type: checkly:AlertChannel
        name: slack_ac
        properties:
          slack:
            channel: '#checkly-notifications'
            url: https://hooks.slack.com/services/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
      # An Opsgenie alert channel
      opsgenieAc:
        type: checkly:AlertChannel
        name: opsgenie_ac
        properties:
          opsgenie:
            name: opsalerts
            apiKey: fookey
            region: fooregion
            priority: foopriority
      # A Pagerduty alert channel
      pagerdutyAc:
        type: checkly:AlertChannel
        name: pagerduty_ac
        properties:
          pagerduty:
            account: checkly
            serviceKey: key1
            serviceName: pdalert
      # A Webhook alert channel
      webhookAc:
        type: checkly:AlertChannel
        name: webhook_ac
        properties:
          webhook:
            name: foo
            method: get
            template: footemplate
            url: https://example.com/foo
            webhookSecret: foosecret
      # A Firehydran alert channel integration
      firehydrantAc:
        type: checkly:AlertChannel
        name: firehydrant_ac
        properties:
          webhook:
            name: firehydrant
            method: post
            template: |
              {
                "event": "{{ALERT_TITLE}}",
                "link": "{{RESULT_LINK}}",
                "check_id": "{{CHECK_ID}}",
                "check_type": "{{CHECK_TYPE}}",
                "alert_type": "{{ALERT_TYPE}}",
                "started_at": "{{STARTED_AT}}",
                "check_result_id": "{{CHECK_RESULT_ID}}"
              },          
            url: https://app.firehydrant.io/integrations/alerting/webhooks/2/checkly
            webhookType: WEBHOOK_FIREHYDRANT
      # Connecting the alert channel to a check
      exampleCheck:
        type: checkly:Check
        name: example_check
        properties:
          name: Example check
          alertChannelSubscriptions:
            - channelId: ${emailAc.id}
              activated: true
            - channelId: ${smsAc.id}
              activated: true
    

    Create AlertChannel Resource

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

    Constructor syntax

    new AlertChannel(name: string, args?: AlertChannelArgs, opts?: CustomResourceOptions);
    @overload
    def AlertChannel(resource_name: str,
                     args: Optional[AlertChannelArgs] = None,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def AlertChannel(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     call: Optional[AlertChannelCallArgs] = None,
                     email: Optional[AlertChannelEmailArgs] = None,
                     opsgenie: Optional[AlertChannelOpsgenieArgs] = None,
                     pagerduty: Optional[AlertChannelPagerdutyArgs] = None,
                     send_degraded: Optional[bool] = None,
                     send_failure: Optional[bool] = None,
                     send_recovery: Optional[bool] = None,
                     slack: Optional[AlertChannelSlackArgs] = None,
                     sms: Optional[AlertChannelSmsArgs] = None,
                     ssl_expiry: Optional[bool] = None,
                     ssl_expiry_threshold: Optional[int] = None,
                     webhook: Optional[AlertChannelWebhookArgs] = None)
    func NewAlertChannel(ctx *Context, name string, args *AlertChannelArgs, opts ...ResourceOption) (*AlertChannel, error)
    public AlertChannel(string name, AlertChannelArgs? args = null, CustomResourceOptions? opts = null)
    public AlertChannel(String name, AlertChannelArgs args)
    public AlertChannel(String name, AlertChannelArgs args, CustomResourceOptions options)
    
    type: checkly:AlertChannel
    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 AlertChannelArgs
    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 AlertChannelArgs
    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 AlertChannelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AlertChannelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AlertChannelArgs
    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 alertChannelResource = new Checkly.AlertChannel("alertChannelResource", new()
    {
        Call = new Checkly.Inputs.AlertChannelCallArgs
        {
            Name = "string",
            Number = "string",
        },
        Email = new Checkly.Inputs.AlertChannelEmailArgs
        {
            Address = "string",
        },
        Opsgenie = new Checkly.Inputs.AlertChannelOpsgenieArgs
        {
            ApiKey = "string",
            Name = "string",
            Priority = "string",
            Region = "string",
        },
        Pagerduty = new Checkly.Inputs.AlertChannelPagerdutyArgs
        {
            ServiceKey = "string",
            Account = "string",
            ServiceName = "string",
        },
        SendDegraded = false,
        SendFailure = false,
        SendRecovery = false,
        Slack = new Checkly.Inputs.AlertChannelSlackArgs
        {
            Channel = "string",
            Url = "string",
        },
        Sms = new Checkly.Inputs.AlertChannelSmsArgs
        {
            Name = "string",
            Number = "string",
        },
        SslExpiry = false,
        SslExpiryThreshold = 0,
        Webhook = new Checkly.Inputs.AlertChannelWebhookArgs
        {
            Name = "string",
            Url = "string",
            Headers = 
            {
                { "string", "string" },
            },
            Method = "string",
            QueryParameters = 
            {
                { "string", "string" },
            },
            Template = "string",
            WebhookSecret = "string",
            WebhookType = "string",
        },
    });
    
    example, err := checkly.NewAlertChannel(ctx, "alertChannelResource", &checkly.AlertChannelArgs{
    	Call: &checkly.AlertChannelCallArgs{
    		Name:   pulumi.String("string"),
    		Number: pulumi.String("string"),
    	},
    	Email: &checkly.AlertChannelEmailArgs{
    		Address: pulumi.String("string"),
    	},
    	Opsgenie: &checkly.AlertChannelOpsgenieArgs{
    		ApiKey:   pulumi.String("string"),
    		Name:     pulumi.String("string"),
    		Priority: pulumi.String("string"),
    		Region:   pulumi.String("string"),
    	},
    	Pagerduty: &checkly.AlertChannelPagerdutyArgs{
    		ServiceKey:  pulumi.String("string"),
    		Account:     pulumi.String("string"),
    		ServiceName: pulumi.String("string"),
    	},
    	SendDegraded: pulumi.Bool(false),
    	SendFailure:  pulumi.Bool(false),
    	SendRecovery: pulumi.Bool(false),
    	Slack: &checkly.AlertChannelSlackArgs{
    		Channel: pulumi.String("string"),
    		Url:     pulumi.String("string"),
    	},
    	Sms: &checkly.AlertChannelSmsArgs{
    		Name:   pulumi.String("string"),
    		Number: pulumi.String("string"),
    	},
    	SslExpiry:          pulumi.Bool(false),
    	SslExpiryThreshold: pulumi.Int(0),
    	Webhook: &checkly.AlertChannelWebhookArgs{
    		Name: pulumi.String("string"),
    		Url:  pulumi.String("string"),
    		Headers: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		Method: pulumi.String("string"),
    		QueryParameters: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		Template:      pulumi.String("string"),
    		WebhookSecret: pulumi.String("string"),
    		WebhookType:   pulumi.String("string"),
    	},
    })
    
    var alertChannelResource = new AlertChannel("alertChannelResource", AlertChannelArgs.builder()
        .call(AlertChannelCallArgs.builder()
            .name("string")
            .number("string")
            .build())
        .email(AlertChannelEmailArgs.builder()
            .address("string")
            .build())
        .opsgenie(AlertChannelOpsgenieArgs.builder()
            .apiKey("string")
            .name("string")
            .priority("string")
            .region("string")
            .build())
        .pagerduty(AlertChannelPagerdutyArgs.builder()
            .serviceKey("string")
            .account("string")
            .serviceName("string")
            .build())
        .sendDegraded(false)
        .sendFailure(false)
        .sendRecovery(false)
        .slack(AlertChannelSlackArgs.builder()
            .channel("string")
            .url("string")
            .build())
        .sms(AlertChannelSmsArgs.builder()
            .name("string")
            .number("string")
            .build())
        .sslExpiry(false)
        .sslExpiryThreshold(0)
        .webhook(AlertChannelWebhookArgs.builder()
            .name("string")
            .url("string")
            .headers(Map.of("string", "string"))
            .method("string")
            .queryParameters(Map.of("string", "string"))
            .template("string")
            .webhookSecret("string")
            .webhookType("string")
            .build())
        .build());
    
    alert_channel_resource = checkly.AlertChannel("alertChannelResource",
        call={
            "name": "string",
            "number": "string",
        },
        email={
            "address": "string",
        },
        opsgenie={
            "api_key": "string",
            "name": "string",
            "priority": "string",
            "region": "string",
        },
        pagerduty={
            "service_key": "string",
            "account": "string",
            "service_name": "string",
        },
        send_degraded=False,
        send_failure=False,
        send_recovery=False,
        slack={
            "channel": "string",
            "url": "string",
        },
        sms={
            "name": "string",
            "number": "string",
        },
        ssl_expiry=False,
        ssl_expiry_threshold=0,
        webhook={
            "name": "string",
            "url": "string",
            "headers": {
                "string": "string",
            },
            "method": "string",
            "query_parameters": {
                "string": "string",
            },
            "template": "string",
            "webhook_secret": "string",
            "webhook_type": "string",
        })
    
    const alertChannelResource = new checkly.AlertChannel("alertChannelResource", {
        call: {
            name: "string",
            number: "string",
        },
        email: {
            address: "string",
        },
        opsgenie: {
            apiKey: "string",
            name: "string",
            priority: "string",
            region: "string",
        },
        pagerduty: {
            serviceKey: "string",
            account: "string",
            serviceName: "string",
        },
        sendDegraded: false,
        sendFailure: false,
        sendRecovery: false,
        slack: {
            channel: "string",
            url: "string",
        },
        sms: {
            name: "string",
            number: "string",
        },
        sslExpiry: false,
        sslExpiryThreshold: 0,
        webhook: {
            name: "string",
            url: "string",
            headers: {
                string: "string",
            },
            method: "string",
            queryParameters: {
                string: "string",
            },
            template: "string",
            webhookSecret: "string",
            webhookType: "string",
        },
    });
    
    type: checkly:AlertChannel
    properties:
        call:
            name: string
            number: string
        email:
            address: string
        opsgenie:
            apiKey: string
            name: string
            priority: string
            region: string
        pagerduty:
            account: string
            serviceKey: string
            serviceName: string
        sendDegraded: false
        sendFailure: false
        sendRecovery: false
        slack:
            channel: string
            url: string
        sms:
            name: string
            number: string
        sslExpiry: false
        sslExpiryThreshold: 0
        webhook:
            headers:
                string: string
            method: string
            name: string
            queryParameters:
                string: string
            template: string
            url: string
            webhookSecret: string
            webhookType: string
    

    AlertChannel 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 AlertChannel resource accepts the following input properties:

    call Property Map
    email Property Map
    opsgenie Property Map
    pagerduty Property Map
    sendDegraded Boolean
    (Default false)
    sendFailure Boolean
    (Default true)
    sendRecovery Boolean
    (Default true)
    slack Property Map
    sms Property Map
    sslExpiry Boolean
    (Default false)
    sslExpiryThreshold Number
    Value must be between 1 and 30 (Default 30)
    webhook Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AlertChannel 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 AlertChannel Resource

    Get an existing AlertChannel 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?: AlertChannelState, opts?: CustomResourceOptions): AlertChannel
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            call: Optional[AlertChannelCallArgs] = None,
            email: Optional[AlertChannelEmailArgs] = None,
            opsgenie: Optional[AlertChannelOpsgenieArgs] = None,
            pagerduty: Optional[AlertChannelPagerdutyArgs] = None,
            send_degraded: Optional[bool] = None,
            send_failure: Optional[bool] = None,
            send_recovery: Optional[bool] = None,
            slack: Optional[AlertChannelSlackArgs] = None,
            sms: Optional[AlertChannelSmsArgs] = None,
            ssl_expiry: Optional[bool] = None,
            ssl_expiry_threshold: Optional[int] = None,
            webhook: Optional[AlertChannelWebhookArgs] = None) -> AlertChannel
    func GetAlertChannel(ctx *Context, name string, id IDInput, state *AlertChannelState, opts ...ResourceOption) (*AlertChannel, error)
    public static AlertChannel Get(string name, Input<string> id, AlertChannelState? state, CustomResourceOptions? opts = null)
    public static AlertChannel get(String name, Output<String> id, AlertChannelState state, CustomResourceOptions options)
    resources:  _:    type: checkly:AlertChannel    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.
    The following state arguments are supported:
    call Property Map
    email Property Map
    opsgenie Property Map
    pagerduty Property Map
    sendDegraded Boolean
    (Default false)
    sendFailure Boolean
    (Default true)
    sendRecovery Boolean
    (Default true)
    slack Property Map
    sms Property Map
    sslExpiry Boolean
    (Default false)
    sslExpiryThreshold Number
    Value must be between 1 and 30 (Default 30)
    webhook Property Map

    Supporting Types

    AlertChannelCall, AlertChannelCallArgs

    Name string
    The name of this alert channel
    Number string
    The mobile number to receive the alerts
    Name string
    The name of this alert channel
    Number string
    The mobile number to receive the alerts
    name String
    The name of this alert channel
    number String
    The mobile number to receive the alerts
    name string
    The name of this alert channel
    number string
    The mobile number to receive the alerts
    name str
    The name of this alert channel
    number str
    The mobile number to receive the alerts
    name String
    The name of this alert channel
    number String
    The mobile number to receive the alerts

    AlertChannelEmail, AlertChannelEmailArgs

    Address string
    The email address of this email alert channel.
    Address string
    The email address of this email alert channel.
    address String
    The email address of this email alert channel.
    address string
    The email address of this email alert channel.
    address str
    The email address of this email alert channel.
    address String
    The email address of this email alert channel.

    AlertChannelOpsgenie, AlertChannelOpsgenieArgs

    ApiKey string
    Name string
    Priority string
    Region string
    ApiKey string
    Name string
    Priority string
    Region string
    apiKey String
    name String
    priority String
    region String
    apiKey string
    name string
    priority string
    region string
    apiKey String
    name String
    priority String
    region String

    AlertChannelPagerduty, AlertChannelPagerdutyArgs

    ServiceKey string
    Account string
    ServiceName string
    ServiceKey string
    Account string
    ServiceName string
    serviceKey String
    account String
    serviceName String
    serviceKey string
    account string
    serviceName string
    serviceKey String
    account String
    serviceName String

    AlertChannelSlack, AlertChannelSlackArgs

    Channel string
    The name of the alert's Slack channel
    Url string
    The Slack webhook URL
    Channel string
    The name of the alert's Slack channel
    Url string
    The Slack webhook URL
    channel String
    The name of the alert's Slack channel
    url String
    The Slack webhook URL
    channel string
    The name of the alert's Slack channel
    url string
    The Slack webhook URL
    channel str
    The name of the alert's Slack channel
    url str
    The Slack webhook URL
    channel String
    The name of the alert's Slack channel
    url String
    The Slack webhook URL

    AlertChannelSms, AlertChannelSmsArgs

    Name string
    The name of this alert channel
    Number string
    The mobile number to receive the alerts
    Name string
    The name of this alert channel
    Number string
    The mobile number to receive the alerts
    name String
    The name of this alert channel
    number String
    The mobile number to receive the alerts
    name string
    The name of this alert channel
    number string
    The mobile number to receive the alerts
    name str
    The name of this alert channel
    number str
    The mobile number to receive the alerts
    name String
    The name of this alert channel
    number String
    The mobile number to receive the alerts

    AlertChannelWebhook, AlertChannelWebhookArgs

    Name string
    Url string
    Headers Dictionary<string, string>
    Method string
    (Default POST)
    QueryParameters Dictionary<string, string>
    Template string
    WebhookSecret string
    WebhookType string
    Type of the webhook. Possible values are 'WEBHOOKDISCORD', 'WEBHOOKFIREHYDRANT', 'WEBHOOKGITLABALERT', 'WEBHOOKSPIKESH', 'WEBHOOKSPLUNK', 'WEBHOOKMSTEAMS' and 'WEBHOOKTELEGRAM'.
    Name string
    Url string
    Headers map[string]string
    Method string
    (Default POST)
    QueryParameters map[string]string
    Template string
    WebhookSecret string
    WebhookType string
    Type of the webhook. Possible values are 'WEBHOOKDISCORD', 'WEBHOOKFIREHYDRANT', 'WEBHOOKGITLABALERT', 'WEBHOOKSPIKESH', 'WEBHOOKSPLUNK', 'WEBHOOKMSTEAMS' and 'WEBHOOKTELEGRAM'.
    name String
    url String
    headers Map<String,String>
    method String
    (Default POST)
    queryParameters Map<String,String>
    template String
    webhookSecret String
    webhookType String
    Type of the webhook. Possible values are 'WEBHOOKDISCORD', 'WEBHOOKFIREHYDRANT', 'WEBHOOKGITLABALERT', 'WEBHOOKSPIKESH', 'WEBHOOKSPLUNK', 'WEBHOOKMSTEAMS' and 'WEBHOOKTELEGRAM'.
    name string
    url string
    headers {[key: string]: string}
    method string
    (Default POST)
    queryParameters {[key: string]: string}
    template string
    webhookSecret string
    webhookType string
    Type of the webhook. Possible values are 'WEBHOOKDISCORD', 'WEBHOOKFIREHYDRANT', 'WEBHOOKGITLABALERT', 'WEBHOOKSPIKESH', 'WEBHOOKSPLUNK', 'WEBHOOKMSTEAMS' and 'WEBHOOKTELEGRAM'.
    name str
    url str
    headers Mapping[str, str]
    method str
    (Default POST)
    query_parameters Mapping[str, str]
    template str
    webhook_secret str
    webhook_type str
    Type of the webhook. Possible values are 'WEBHOOKDISCORD', 'WEBHOOKFIREHYDRANT', 'WEBHOOKGITLABALERT', 'WEBHOOKSPIKESH', 'WEBHOOKSPLUNK', 'WEBHOOKMSTEAMS' and 'WEBHOOKTELEGRAM'.
    name String
    url String
    headers Map<String>
    method String
    (Default POST)
    queryParameters Map<String>
    template String
    webhookSecret String
    webhookType String
    Type of the webhook. Possible values are 'WEBHOOKDISCORD', 'WEBHOOKFIREHYDRANT', 'WEBHOOKGITLABALERT', 'WEBHOOKSPIKESH', 'WEBHOOKSPLUNK', 'WEBHOOKMSTEAMS' and 'WEBHOOKTELEGRAM'.

    Package Details

    Repository
    checkly checkly/pulumi-checkly
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the checkly Terraform Provider.
    checkly logo
    Checkly v2.1.1 published on Tuesday, Mar 11, 2025 by Checkly