diff --git a/opsgenie/resource_opsgenie_service_incident_rule.go b/opsgenie/resource_opsgenie_service_incident_rule.go index 0488c305..44418f7e 100644 --- a/opsgenie/resource_opsgenie_service_incident_rule.go +++ b/opsgenie/resource_opsgenie_service_incident_rule.go @@ -58,7 +58,7 @@ func resourceOpsGenieServiceIncidentRule() *schema.Resource { Required: true, ValidateFunc: validation.StringInSlice([]string{ "message", "description", "tags", - "extra-properties", "recipients", "teams", "priority", + "extra-properties", "responders", "teams", "priority", "alias", "source", "entity", "actions", "details", }, false), }, diff --git a/website/docs/r/service_incident_rule.html.markdown b/website/docs/r/service_incident_rule.html.markdown index 3b3e2877..059c6aaf 100644 --- a/website/docs/r/service_incident_rule.html.markdown +++ b/website/docs/r/service_incident_rule.html.markdown @@ -69,7 +69,7 @@ The `incident_rule` block supports: The `conditions` block supports: -* `field` - (Required) Specifies which alert field will be used in condition. Possible values are `message`, `alias`, `description`, `source`, `entity`, `tags`, `actions`, `details`, `extra-properties`, `recipients`, `teams`, `priority` +* `field` - (Required) Specifies which alert field will be used in condition. Possible values are `message`, `alias`, `description`, `source`, `entity`, `tags`, `actions`, `details`, `extra-properties`, `responders`, `teams`, `priority` * `operation` - (Required) It is the operation that will be executed for the given field and key. Possible operations are `matches`, `contains`, `starts-with`, `ends-with`, `equals`, `contains-key`, `contains-value`, `greater-than`, `less-than`, `is-empty`, `equals-ignore-whitespace`.