Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.5 KB

site_integration.md

File metadata and controls

59 lines (39 loc) · 1.5 KB
page_title subcategory description
sigsci_site_integration Resource - terraform-provider-sigsci

sigsci_site_integration (Resource)

Example Usage

resource "sigsci_site_integration" "test_integration" {
  site_short_name = sigsci_site.my-site.short_name
  type            = "slack"
  url             = "https://wat.slack.com"
  events          = ["listCreated"]
}
Warning: You must terraform apply with the option parallelism=1 when using this resource or risk data inconsistencies! See the FAQ.

Schema

Required

  • site_short_name (String) Site short name
  • type (String) One of (mailingList, slack, datadog, generic, pagerduty, microsoftTeams, jira, opsgenie, victorops, pivotaltracker)
  • url (String) Integration URL

Optional

Read-Only

  • id (String) The ID of this resource.
  • name (String) name

Nested Schema for fields

Required:

  • name (String)
  • value (String)

Import

Import is supported using the following syntax:

terraform import sigsci_site_integration.test_integration site_short_name:id