aboutsummaryrefslogtreecommitdiffhomepage
path: root/website/docs/index.html.markdown
diff options
context:
space:
mode:
authorJake Champlin <jake.champlin.27@gmail.com>2017-06-09 11:32:24 -0400
committerJake Champlin <jake.champlin.27@gmail.com>2017-06-09 11:32:24 -0400
commit21252084ae8c5f3321b45008fd5a6b162b293407 (patch)
treebf9c7ed2c130f3ab6ee80f4bf08f309d4b590b04 /website/docs/index.html.markdown
parent5f34059ad1bf9fb9e0bfd9f1b317917ecccf36f7 (diff)
parent9d169efde2420e3f07ba5eac26f1daa6713d5308 (diff)
downloadterraform-provider-statuscake-21252084ae8c5f3321b45008fd5a6b162b293407.tar.gz
terraform-provider-statuscake-21252084ae8c5f3321b45008fd5a6b162b293407.tar.zst
terraform-provider-statuscake-21252084ae8c5f3321b45008fd5a6b162b293407.zip
Merge branch 'master' of /Users/jake/terraform
Diffstat (limited to 'website/docs/index.html.markdown')
-rw-r--r--website/docs/index.html.markdown39
1 files changed, 39 insertions, 0 deletions
diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown
new file mode 100644
index 0000000..d25a866
--- /dev/null
+++ b/website/docs/index.html.markdown
@@ -0,0 +1,39 @@
1---
2layout: "statuscake"
3page_title: "Provider: StatusCake"
4sidebar_current: "docs-statuscake-index"
5description: |-
6 The StatusCake provider configures tests in StatusCake.
7---
8
9# StatusCake Provider
10
11The StatusCake provider allows Terraform to create and configure tests in [StatusCake](https://www.statuscake.com/). StatusCake is a tool that helps to
12monitor the uptime of your service via a network of monitoring centers throughout the world
13
14The provider configuration block accepts the following arguments:
15
16* ``username`` - (Required) The username for the statuscake account. May alternatively be set via the
17 ``STATUSCAKE_USERNAME`` environment variable.
18
19* ``apikey`` - (Required) The API auth token to use when making requests. May alternatively
20 be set via the ``STATUSCAKE_APIKEY`` environment variable.
21
22Use the navigation to the left to read about the available resources.
23
24## Example Usage
25
26```hcl
27provider "statuscake" {
28 username = "testuser"
29 apikey = "12345ddfnakn"
30}
31
32resource "statuscake_test" "google" {
33 website_name = "google.com"
34 website_url = "www.google.com"
35 test_type = "HTTP"
36 check_rate = 300
37 contact_id = 12345
38}
39```