Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Add two missing items to Readme #67

Merged
merged 2 commits into from
Sep 13, 2020
Merged
Changes from all 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
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This project is a [terraform](http://www.terraform.io/) provider for [pingdom](h

This currently only supports working with basic HTTP and ping checks.

This supports Pingdom API v2.1: [API reference docs](https://www.pingdom.com/api/2.1/)

## Build and install ##

### Using released versions ###
Expand Down Expand Up @@ -184,7 +186,7 @@ resource "pingdom_contact" "second_user_contact_email_1" {

### Pingdom Check ###

#### Common Attibutes ####
#### Common Attributes ####

The following common attributes for all check types can be set:

Expand All @@ -195,6 +197,10 @@ The following common attributes for all check types can be set:
* **resolution** - (Required) The time in minutes between each check. Allowed values: (1,5,15,30,60).

* **type** - (Required) The check type. Allowed values: (http, ping).

* **paused** - Whether the check is active or not (defaults to `false`, if not provided). Allowed values (bool): `true`, `false`

* **responsetime_threshold** = How long (int: milliseconds) pingdom should wait before marking a probe as failed (defaults to 30000 ms)

* **sendnotificationwhendown** - The number of consecutive failed checks required to trigger an alert. Values of 0 are ignored. See note about interaction with `integrationids` below.

Expand All @@ -210,7 +216,7 @@ The following common attributes for all check types can be set:

Note that when using `integrationids`, the `sendnotificationswhendown` value will be ignored when sending webhook notifications. You may need to contact Pingdom support for more details. See #52.

#### HTTP specific attibutes ####
#### HTTP specific attributes ####

For the HTTP checks, you can set these attributes:

Expand Down Expand Up @@ -238,7 +244,7 @@ For the HTTP checks, you can set these attributes:

* **publicreport** - If `true`, this check will be included in the public report (default: `false`)

#### TCP specific attibutes ####
#### TCP specific attributes ####

For the TCP checks, you can set these attributes:

Expand Down