From 93b8121c9b818473b9f795cb28f9db54ca148f6f Mon Sep 17 00:00:00 2001 From: Mathias Fredriksson Date: Thu, 6 Oct 2022 16:25:18 +0300 Subject: [PATCH] fix: Change use of 1337 to 13337 in example templates (#4386) --- dogfood/main.tf | 2 +- examples/templates/aws-ecs-container/main.tf | 2 +- examples/templates/aws-linux/main.tf | 2 +- examples/templates/bare/main.tf | 2 +- examples/templates/docker-image-builds/main.tf | 2 +- examples/templates/gcp-linux/main.tf | 2 +- examples/templates/gcp-vm-container/main.tf | 2 +- examples/templates/kubernetes/main.tf | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dogfood/main.tf b/dogfood/main.tf index e79cfff402..5635223c52 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 a1b48ef0ee..e21381ad54 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 c3dbae4a37..549afaeccb 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 df9eaf76cc..24bf79b337 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 7e594647df..4849253a7b 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 25c14ceba9..29e516790c 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 f7aa36e4f3..508bf4a344 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 5138a2ca35..7e84b604ce 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 }