Skip to content
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
14 changes: 7 additions & 7 deletions cloudflare.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ locals {
port = 443
}
ogmios_m1 = {
enabled = false
address = ""
port = 0
enabled = true
address = "all.ogmios-m1.demeter.run"
port = 443
}
ogmios = {
enabled = true
Expand Down Expand Up @@ -346,10 +346,10 @@ resource "cloudflare_load_balancer_monitor" "ogmios_mainnet_monitor" {

# Ogmios M1 (top-level splat)
resource "cloudflare_load_balancer_monitor" "ogmios_m1_monitor" {
account_id = var.cloudflare_account_id
type = "https"
description = "Health check for OgmiosM1"
path = "/healthz"
account_id = var.cloudflare_account_id
type = "https"
description = "Health check for OgmiosM1"
path = "/healthz"
# port omitted so each origin is health-checked on its own port
interval = 60
timeout = 5
Expand Down
Loading