]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - r/test.html.markdown
website/docs: Run `terraform fmt` on code examples (#12075)
[github/fretlink/terraform-provider-statuscake.git] / r / test.html.markdown
CommitLineData
d3491090 1---
2layout: "statuscake"
3page_title: "StatusCake: statuscake_test"
4sidebar_current: "docs-statuscake-test"
5description: |-
6 The statuscake_test resource allows StatusCake tests to be managed by Terraform.
7---
8
9# statuscake\_test
10
6f91d719 11The test resource allows StatusCake tests to be managed by Terraform.
d3491090 12
13## Example Usage
14
15```
16resource "statuscake_test" "google" {
506e71e5
GC
17 website_name = "google.com"
18 website_url = "www.google.com"
19 test_type = "HTTP"
20 check_rate = 300
21 contact_id = 12345
d3491090 22}
23```
24
25## Argument Reference
26
27The following arguments are supported:
28
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
31* `check_rate` - (Optional) Test check rate in seconds. Defaults to 300
6c360ff2 32* `contact_id` - (Optional) The id of the contact group to be add to the test. Each test can have only one.
d3491090 33* `test_type` - (Required) The type of Test. Either HTTP or TCP
34* `paused` - (Optional) Whether or not the test is paused. Defaults to false.
35* `timeout` - (Optional) The timeout of the test in seconds.
8a16ad02 36* `contact_id` - (Optional) The ID of the contact group to associate with the test.
8165842a 37* `confirmations` - (Optional) The number of confirmation servers to use in order to detect downtime. Defaults to 0.
46abe953 38* `port` - (Optional) The port to use when specifying a TCP test.
d3491090 39
40
41## Attributes Reference
42
43The following attribute is exported:
44
6f91d719 45* `test_id` - A unique identifier for the test.