diff --git a/opsgenie/resource_opsgenie_alert_policy.go b/opsgenie/resource_opsgenie_alert_policy.go index 64e5477a..d96a82bd 100644 --- a/opsgenie/resource_opsgenie_alert_policy.go +++ b/opsgenie/resource_opsgenie_alert_policy.go @@ -79,7 +79,7 @@ func resourceOpsGenieAlertPolicy() *schema.Resource { Required: true, ValidateFunc: validation.StringInSlice([]string{ "message", "alias", "description", "source", "entity", "tags", - "actions", "details", "extra-properties", "recipients", "teams", "priority", + "actions", "details", "extra-properties", "responders", "teams", "priority", }, false), }, "operation": { diff --git a/opsgenie/resource_opsgenie_notification_policy.go b/opsgenie/resource_opsgenie_notification_policy.go index 75dc7839..dfc238fc 100644 --- a/opsgenie/resource_opsgenie_notification_policy.go +++ b/opsgenie/resource_opsgenie_notification_policy.go @@ -88,7 +88,7 @@ func resourceOpsGenieNotificationPolicy() *schema.Resource { Required: true, ValidateFunc: validation.StringInSlice([]string{ "message", "alias", "description", "source", "entity", "tags", - "actions", "details", "extra-properties", "recipients", "teams", "priority", + "actions", "details", "extra-properties", "responders", "teams", "priority", }, false), }, "operation": { diff --git a/website/docs/r/alert_policy.html.markdown b/website/docs/r/alert_policy.html.markdown index 48347c66..42f95037 100644 --- a/website/docs/r/alert_policy.html.markdown +++ b/website/docs/r/alert_policy.html.markdown @@ -102,7 +102,7 @@ The `filter` 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`. diff --git a/website/docs/r/notification_policy.html.markdown b/website/docs/r/notification_policy.html.markdown index ba2469d7..cf5e0733 100644 --- a/website/docs/r/notification_policy.html.markdown +++ b/website/docs/r/notification_policy.html.markdown @@ -66,7 +66,7 @@ The `filter` 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`.