diff --git a/docs/resources/oncall_integration.md b/docs/resources/oncall_integration.md index 313b14845..83bf3f625 100644 --- a/docs/resources/oncall_integration.md +++ b/docs/resources/oncall_integration.md @@ -51,7 +51,7 @@ resource "grafana_oncall_integration" "integration_with_templates" { - `default_route` (Block List, Min: 1, Max: 1) The Default route for all alerts from the given integration (see [below for nested schema](#nestedblock--default_route)) - `name` (String) The name of the service integration. -- `type` (String) The type of integration. Can be grafana, grafana_alerting, webhook, alertmanager, kapacitor, fabric, newrelic, datadog, pagerduty, pingdom, elastalert, amazon_sns, curler, sentry, formatted_webhook, heartbeat, demo, manual, stackdriver, uptimerobot, sentry_platform, zabbix, prtg, slack_channel, inbound_email, direct_paging. +- `type` (String) The type of integration. Can be grafana, grafana_alerting, webhook, alertmanager, kapacitor, fabric, newrelic, datadog, pagerduty, pingdom, elastalert, amazon_sns, curler, sentry, formatted_webhook, heartbeat, demo, manual, stackdriver, uptimerobot, sentry_platform, zabbix, prtg, slack_channel, inbound_email, direct_paging, jira. ### Optional diff --git a/internal/resources/oncall/resource_integration.go b/internal/resources/oncall/resource_integration.go index c39d2640e..09dadc693 100644 --- a/internal/resources/oncall/resource_integration.go +++ b/internal/resources/oncall/resource_integration.go @@ -41,6 +41,7 @@ var integrationTypes = []string{ "slack_channel", "inbound_email", "direct_paging", + "jira", } var integrationTypesVerbal = strings.Join(integrationTypes, ", ")