mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-05 13:00:26 -05:00
1.1 KiB
1.1 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| statuscake | Provider: StatusCake | docs-statuscake-index | The StatusCake provider configures tests in StatusCake. |
StatusCake Provider
The StatusCake provider allows Terraform to create and configure tests in StatusCake. StatusCake is a tool that helps to monitor the uptime of your service via a network of monitoring centers throughout the world
The provider configuration block accepts the following arguments:
-
username- (Required) The username for the statuscake account. May alternatively be set via theSTATUSCAKE_USERNAMEenvironment variable. -
apikey- (Required) The API auth token to use when making requests. May alternatively be set via theSTATUSCAKE_APIKEYenvironment variable.
Use the navigation to the left to read about the available resources.
Example Usage
provider "statuscake" {
username = "testuser"
apikey = "12345ddfnakn"
}
resource "statuscake_test" "google" {
website_name = "google.com"
website_url = "www.google.com"
test_type = "HTTP"
check_rate = 300
}