aboutsummaryrefslogtreecommitdiffhomepage
path: root/website/docs/index.html.markdown
diff options
context:
space:
mode:
authorAlexandre Garand <alexandre.garand@fretlink.com>2019-08-09 11:02:14 +0200
committerAlexandre Garand <alexandre.garand@fretlink.com>2019-08-09 12:30:58 +0200
commit49c1c7b4dc69ffb9ab52330e6dc52ccdd6351087 (patch)
tree34f1df96cf365a584acf76482d5b5b5fb4d267ee /website/docs/index.html.markdown
parentebf8436f01bcacb71e3c378f08b165dfd6dd90e6 (diff)
downloadterraform-provider-statuscake-49c1c7b4dc69ffb9ab52330e6dc52ccdd6351087.tar.gz
terraform-provider-statuscake-49c1c7b4dc69ffb9ab52330e6dc52ccdd6351087.tar.zst
terraform-provider-statuscake-49c1c7b4dc69ffb9ab52330e6dc52ccdd6351087.zip
add contact_group resource to the provider
Diffstat (limited to 'website/docs/index.html.markdown')
-rw-r--r--website/docs/index.html.markdown10
1 files changed, 9 insertions, 1 deletions
diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown
index d25a866..653b9ec 100644
--- a/website/docs/index.html.markdown
+++ b/website/docs/index.html.markdown
@@ -3,7 +3,8 @@ layout: "statuscake"
3page_title: "Provider: StatusCake" 3page_title: "Provider: StatusCake"
4sidebar_current: "docs-statuscake-index" 4sidebar_current: "docs-statuscake-index"
5description: |- 5description: |-
6 The StatusCake provider configures tests in StatusCake. 6
7 The StatusCake provider configures tests and contact groups in StatusCake.
7--- 8---
8 9
9# StatusCake Provider 10# StatusCake Provider
@@ -36,4 +37,11 @@ resource "statuscake_test" "google" {
36 check_rate = 300 37 check_rate = 300
37 contact_id = 12345 38 contact_id = 12345
38} 39}
40
41resource "statuscake_contact_group" "exemple" {
42 emails= ["email1","email2"]
43 group_name= "group name"
44 ping_url= "url"
45}
46
39``` 47```