Files
terraform-cloudflare-tunnel…/Insights-Digital_Experience-Test.tf
hcornet 93cb97ac51
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 14s
test 21
2025-11-24 16:48:16 +01:00

24 lines
735 B
HCL

# =============================================================================
# CLOUDFLARE : Insights : Digital Expérience
# =============================================================================
#
resource "cloudflare_zero_trust_dex_test" "example_zero_trust_dex_test" {
account_id = local.cloudflare_account_id
data = {
host = "https://dash.cloudflare.com"
kind = "http"
method = "GET"
}
enabled = true
interval = "30m"
name = "HTTP dash health check"
description = "Checks the dash endpoint every 30 minutes"
target_policies = [{
id = "id"
default = true
name = "name"
}]
# targeted = true
}