Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/resources/monitor_notification_rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ resource "datadog_monitor_notification_rule" "foo" {
### Optional

- `conditional_recipients` (Block, Optional) Use conditional recipients to define different recipients for different situations. Cannot be used with `recipients`. (see [below for nested schema](#nestedblock--conditional_recipients))
- `filter` (Block, Optional) (see [below for nested schema](#nestedblock--filter))
- `filter` (Block, Optional) Specifies the matching criteria for monitor notifications.(see [below for nested schema](#nestedblock--filter))
- `recipients` (Set of String) List of recipients to notify. Cannot be used with `conditional_recipients`.

### Read-Only
Expand All @@ -54,8 +54,8 @@ Optional:

Required:

- `recipients` (Set of String) List of recipients to notify.
- `scope` (String) The scope to which the monitor applied.
- `recipients` (Set of String) A list of recipients to notify. Uses the same format as the monitor message field. Must not start with an '@'.
- `scope` (String) Defines the condition under which the recipients are notified. Supported formats: Monitor status condition using `transition_type:<status>` (for example `transition_type:is_alert`) or a single tag `key:value pair` (for example `env:prod`).



Expand All @@ -64,8 +64,8 @@ Required:

Optional:

- `scope` (String) The scope to which the monitor applied.
- `tags` (Set of String) All tags that target monitors must match.
- `scope` (String) A scope expression composed of `key:value` pairs (such as `env:prod`) with boolean operators (AND, OR, NOT) and parentheses for grouping.
- `tags` (Set of String) A list of tag key:value pairs (e.g. team:product). All tags must match (AND semantics).

## Import

Expand Down
Loading