diff options
author | Alexandre Garand <alexandre.garand@fretlink.com> | 2019-08-09 16:51:13 +0200 |
---|---|---|
committer | Alexandre Garand <alexandre.garand@fretlink.com> | 2019-08-09 16:51:13 +0200 |
commit | b74d3065f299a1953e6d21e3d48d3ce0629bcaf7 (patch) | |
tree | 0ce1b8fd1a2b3ff7d427b567111f0732faa461ec /website/docs/index.html.markdown | |
parent | ebf8436f01bcacb71e3c378f08b165dfd6dd90e6 (diff) | |
parent | 464a0a808240c83e365ddc7a4c52b82ecf9b76c4 (diff) | |
download | terraform-provider-statuscake-b74d3065f299a1953e6d21e3d48d3ce0629bcaf7.tar.gz terraform-provider-statuscake-b74d3065f299a1953e6d21e3d48d3ce0629bcaf7.tar.zst terraform-provider-statuscake-b74d3065f299a1953e6d21e3d48d3ce0629bcaf7.zip |
Merge branch 'add_ssl_tests' of github.com:alexandreFre/terraform-provider-statuscake
Diffstat (limited to 'website/docs/index.html.markdown')
-rw-r--r-- | website/docs/index.html.markdown | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index d25a866..db2e56d 100644 --- a/website/docs/index.html.markdown +++ b/website/docs/index.html.markdown | |||
@@ -3,7 +3,7 @@ layout: "statuscake" | |||
3 | page_title: "Provider: StatusCake" | 3 | page_title: "Provider: StatusCake" |
4 | sidebar_current: "docs-statuscake-index" | 4 | sidebar_current: "docs-statuscake-index" |
5 | description: |- | 5 | description: |- |
6 | The StatusCake provider configures tests in StatusCake. | 6 | The StatusCake provider configures tests and in StatusCake. |
7 | --- | 7 | --- |
8 | 8 | ||
9 | # StatusCake Provider | 9 | # StatusCake Provider |
@@ -36,4 +36,15 @@ resource "statuscake_test" "google" { | |||
36 | check_rate = 300 | 36 | check_rate = 300 |
37 | contact_id = 12345 | 37 | contact_id = 12345 |
38 | } | 38 | } |
39 | |||
40 | resource "statuscake_ssl" "google" { | ||
41 | domain = "https://www.google.com" | ||
42 | contact_groups_c = "3,12" | ||
43 | checkrate = 3600 | ||
44 | alert_at = "18,71,344" | ||
45 | alert_reminder = true | ||
46 | alert_expiry = true | ||
47 | alert_broken = false | ||
48 | alert_mixed = true | ||
49 | } | ||
39 | ``` | 50 | ``` |