From 3e4f797b77a3ecec9fd8bbfc03fced4e805746e4 Mon Sep 17 00:00:00 2001 From: Lee Johnson Date: Fri, 10 Jun 2016 13:37:44 -0400 Subject: [PATCH] Updating the documentation on the website source to reflect the addition. --- website/source/docs/providers/statuscake/index.html.markdown | 1 + website/source/docs/providers/statuscake/r/test.html.markdown | 2 ++ 2 files changed, 3 insertions(+) diff --git a/website/source/docs/providers/statuscake/index.html.markdown b/website/source/docs/providers/statuscake/index.html.markdown index 150b36aad..443e892d6 100644 --- a/website/source/docs/providers/statuscake/index.html.markdown +++ b/website/source/docs/providers/statuscake/index.html.markdown @@ -34,5 +34,6 @@ resource "statuscake_test" "google" { website_url = "www.google.com" test_type = "HTTP" check_rate = 300 + contact_id = 12345 } ``` diff --git a/website/source/docs/providers/statuscake/r/test.html.markdown b/website/source/docs/providers/statuscake/r/test.html.markdown index d2d1572ed..4ad378a52 100644 --- a/website/source/docs/providers/statuscake/r/test.html.markdown +++ b/website/source/docs/providers/statuscake/r/test.html.markdown @@ -18,6 +18,7 @@ resource "statuscake_test" "google" { website_url = "www.google.com" test_type = "HTTP" check_rate = 300 + contact_id = 12345 } ``` @@ -28,6 +29,7 @@ The following arguments are supported: * `website_name` - (Required) This is the name of the test and the website to be monitored. * `website_url` - (Required) The URL of the website to be monitored * `check_rate` - (Optional) Test check rate in seconds. Defaults to 300 +* `contact_id` - (Optional) The id of the contact group to be add to the test. Each test can have only one. * `test_type` - (Required) The type of Test. Either HTTP or TCP * `paused` - (Optional) Whether or not the test is paused. Defaults to false. * `timeout` - (Optional) The timeout of the test in seconds.