diff --git a/dogfood/main.tf b/dogfood/main.tf index e79cfff402027..5635223c52227 100644 --- a/dogfood/main.tf +++ b/dogfood/main.tf @@ -44,7 +44,7 @@ resource "coder_app" "code-server" { icon = "/icon/code.svg" healthcheck { - url = "http://localhost:1337/healthz" + url = "http://localhost:13337/healthz" interval = 3 threshold = 10 } diff --git a/examples/templates/aws-ecs-container/main.tf b/examples/templates/aws-ecs-container/main.tf index a1b48ef0eeba3..e21381ad543e1 100644 --- a/examples/templates/aws-ecs-container/main.tf +++ b/examples/templates/aws-ecs-container/main.tf @@ -112,7 +112,7 @@ resource "coder_app" "code-server" { subdomain = false healthcheck { - url = "http://localhost:1337/healthz" + url = "http://localhost:13337/healthz" interval = 3 threshold = 10 } diff --git a/examples/templates/aws-linux/main.tf b/examples/templates/aws-linux/main.tf index c3dbae4a37539..549afaeccb423 100644 --- a/examples/templates/aws-linux/main.tf +++ b/examples/templates/aws-linux/main.tf @@ -92,7 +92,7 @@ resource "coder_app" "code-server" { icon = "/icon/code.svg" healthcheck { - url = "http://localhost:1337/healthz" + url = "http://localhost:13337/healthz" interval = 3 threshold = 10 } diff --git a/examples/templates/bare/main.tf b/examples/templates/bare/main.tf index df9eaf76ccada..24bf79b337a14 100644 --- a/examples/templates/bare/main.tf +++ b/examples/templates/bare/main.tf @@ -49,7 +49,7 @@ resource "coder_app" "fake-app" { url = "http://localhost:8080" healthcheck { - url = "http://localhost:1337/healthz" + url = "http://localhost:8080/healthz" interval = 3 threshold = 10 } diff --git a/examples/templates/docker-image-builds/main.tf b/examples/templates/docker-image-builds/main.tf index 7e594647df201..4849253a7b442 100644 --- a/examples/templates/docker-image-builds/main.tf +++ b/examples/templates/docker-image-builds/main.tf @@ -40,7 +40,7 @@ resource "coder_app" "code-server" { icon = "/icon/code.svg" healthcheck { - url = "http://localhost:1337/healthz" + url = "http://localhost:13337/healthz" interval = 3 threshold = 10 } diff --git a/examples/templates/gcp-linux/main.tf b/examples/templates/gcp-linux/main.tf index 25c14ceba9e7d..29e516790c91d 100644 --- a/examples/templates/gcp-linux/main.tf +++ b/examples/templates/gcp-linux/main.tf @@ -67,7 +67,7 @@ resource "coder_app" "code-server" { subdomain = false healthcheck { - url = "http://localhost:1337/healthz" + url = "http://localhost:13337/healthz" interval = 3 threshold = 10 } diff --git a/examples/templates/gcp-vm-container/main.tf b/examples/templates/gcp-vm-container/main.tf index f7aa36e4f32d3..508bf4a344bcb 100644 --- a/examples/templates/gcp-vm-container/main.tf +++ b/examples/templates/gcp-vm-container/main.tf @@ -57,7 +57,7 @@ resource "coder_app" "code-server" { subdomain = false healthcheck { - url = "http://localhost:1337/healthz" + url = "http://localhost:13337/healthz" interval = 3 threshold = 10 } diff --git a/examples/templates/kubernetes/main.tf b/examples/templates/kubernetes/main.tf index 5138a2ca35dab..7e84b604cec52 100644 --- a/examples/templates/kubernetes/main.tf +++ b/examples/templates/kubernetes/main.tf @@ -78,7 +78,7 @@ resource "coder_app" "code-server" { subdomain = false healthcheck { - url = "http://localhost:1337/healthz" + url = "http://localhost:13337/healthz" interval = 3 threshold = 10 }