Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update notifylist.html.markdown #156

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
15 changes: 13 additions & 2 deletions website/docs/r/notifylist.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ resource "ns1_notifylist" "nl" {
email = "[email protected]"
}
}

notifications {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like indentation is off? This doesn't appear to line up with the block above it.

config = {
sourceid = "${ns1_datasource.monitoring_datasource.id}"
}
type = "datafeed"
}
}



mburtless marked this conversation as resolved.
Show resolved Hide resolved
}
```

Expand All @@ -40,8 +51,8 @@ The following arguments are supported:

Notify List Notifiers (`notifications`) support the following:

* `type` - (Required) The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
* `config` - (Required) Configuration details for the given notifier type.
* `type` - (Required) The type of notifier. Available notifiers are indicated in /notifytypes endpoint. Note type `datafeed` is for NS1 Monitoring Data Sources to enable NS1 monitoring to pass metadata to your records and answers.
* `config` - (Required) Configuration details for the given notifier type. `sourceid` is required in `config` for notifcations to NS1 Monitoring Data Sources.

## Attributes Reference

Expand Down