datadog_integration_slack_channel (Resource)

Resource for interacting with the Datadog Slack channel API

Example Usage

resource "datadog_integration_slack_channel" "test_channel" {
  account_name = "foo"
  channel_name = "#test_channel"

  display {
    message  = true
    notified = false
    snapshot = false
    tags     = true
  }
}

Schema

Required

Read-Only

Nested Schema for display

Optional:

Import

Import is supported using the following syntax:

# Slack channel integrations can be imported using their account_name and channel_name separated with a colon (`:`).
terraform import datadog_integration_slack_channel.test_channel "foo:#test_channel"