aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJuan Carlos Alonso <me@jcalonso.com>2019-06-10 14:41:25 +0100
committerJuan Carlos Alonso <me@jcalonso.com>2019-06-10 14:41:25 +0100
commit23a4886b56d32dce724d4e6cac2cd0be4fca7743 (patch)
tree08bc650a1a53ab0fa24920e328cfeda9822b25b6
parent70c40d15e5f05789f68ccee392f7316a0ae0ac38 (diff)
downloadterraform-provider-statuscake-23a4886b56d32dce724d4e6cac2cd0be4fca7743.tar.gz
terraform-provider-statuscake-23a4886b56d32dce724d4e6cac2cd0be4fca7743.tar.zst
terraform-provider-statuscake-23a4886b56d32dce724d4e6cac2cd0be4fca7743.zip
Update docs reflecting contact_id deprecation
-rw-r--r--CHANGELOG.md2
-rw-r--r--website/docs/r/test.html.markdown3
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 117c54e..eea8689 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,7 @@
2 2
3NOTES: 3NOTES:
4 4
5* resource/statuscake_test: `contact_id (int)` has been replaced with `contact_group (type: list)` 5* resource/statuscake_test: `contact_id (int)` has been deprecated, use instead: `contact_group (type: list)`
6* resource:statuscake_test: `test_tags` has been changed from a CSV string to list of strings 6* resource:statuscake_test: `test_tags` has been changed from a CSV string to list of strings
7 7
8 8
diff --git a/website/docs/r/test.html.markdown b/website/docs/r/test.html.markdown
index 9c1fb35..6c65f10 100644
--- a/website/docs/r/test.html.markdown
+++ b/website/docs/r/test.html.markdown
@@ -29,6 +29,7 @@ The following arguments are supported:
29* `website_name` - (Required) This is the name of the test and the website to be monitored. 29* `website_name` - (Required) This is the name of the test and the website to be monitored.
30* `website_url` - (Required) The URL of the website to be monitored 30* `website_url` - (Required) The URL of the website to be monitored
31* `check_rate` - (Optional) Test check rate in seconds. Defaults to 300 31* `check_rate` - (Optional) Test check rate in seconds. Defaults to 300
32* `contact_id` - **Deprecated** (Optional) The id of the contact group to be added to the test. Each test can have only one.
32* `contact_group` - (Optional) Set test contact groups, must be array of strings. 33* `contact_group` - (Optional) Set test contact groups, must be array of strings.
33* `test_type` - (Required) The type of Test. Either HTTP, TCP, PING, or DNS 34* `test_type` - (Required) The type of Test. Either HTTP, TCP, PING, or DNS
34* `paused` - (Optional) Whether or not the test is paused. Defaults to false. 35* `paused` - (Optional) Whether or not the test is paused. Defaults to false.
@@ -51,7 +52,7 @@ The following arguments are supported:
51* `do_not_find` - (Optional) If the above string should be found to trigger a alert. 1 = will trigger if find_string found. 52* `do_not_find` - (Optional) If the above string should be found to trigger a alert. 1 = will trigger if find_string found.
52* `real_browser` - (Optional) Use 1 to TURN OFF real browser testing. 53* `real_browser` - (Optional) Use 1 to TURN OFF real browser testing.
53* `test_tags` - (Optional) Set test tags, must be array of strings. 54* `test_tags` - (Optional) Set test tags, must be array of strings.
54* `status_codes` - (Optional) Comma Seperated List of StatusCodes to Trigger Error on. Defaults are "204, 205, 206, 303, 400, 401, 403, 404, 405, 406, 408, 410, 413, 444, 429, 494, 495, 496, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 521, 522, 523, 524, 520, 598, 599". 55* `status_codes` - (Optional) Comma Separated List of StatusCodes to Trigger Error on. Defaults are "204, 205, 206, 303, 400, 401, 403, 404, 405, 406, 408, 410, 413, 444, 429, 494, 495, 496, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 521, 522, 523, 524, 520, 598, 599".
55* `use_jar` - (Optional) Set to true to enable the Cookie Jar. Required for some redirects. Default is false. 56* `use_jar` - (Optional) Set to true to enable the Cookie Jar. Required for some redirects. Default is false.
56* `post_raw` - (Optional) Use to populate the RAW POST data field on the test. 57* `post_raw` - (Optional) Use to populate the RAW POST data field on the test.
57* `final_endpoint` - (Optional) Use to specify the expected Final URL in the testing process. 58* `final_endpoint` - (Optional) Use to specify the expected Final URL in the testing process.