Skip to content

Added TF docs reference for URL monitors #1339

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions site/content/docs/terraform-provider/checks-groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,34 @@ For example, a Multistep check can look as follows:
}
```

### Url Monitors

URL monitors check the availability and response time of HTTP(S) endpoints. They are ideal for simple uptime checks and ensure that your endpoints return expected status codes within the configured thresholds.

Below is a sample configuration for a URL monitor using Terraform:

```terraform
resource "checkly_url_monitor" "example-url-monitor" {
name = "Example URL monitor"
activated = true
frequency = 2
use_global_alert_settings = true

locations = [
"eu-west-1"
]

request {
url = "https://welcome.checklyhq.com"

assertion {
source = "STATUS_CODE"
comparison = "EQUALS"
target = "200"
}
}
}
```

### Tcp Monitors

Expand Down
Loading