Skip to content

Commit 93b8121

Browse files
authored
fix: Change use of 1337 to 13337 in example templates (#4386)
1 parent 1386465 commit 93b8121

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

dogfood/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ resource "coder_app" "code-server" {
4444
icon = "/icon/code.svg"
4545

4646
healthcheck {
47-
url = "http://localhost:1337/healthz"
47+
url = "http://localhost:13337/healthz"
4848
interval = 3
4949
threshold = 10
5050
}

examples/templates/aws-ecs-container/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ resource "coder_app" "code-server" {
112112
subdomain = false
113113

114114
healthcheck {
115-
url = "http://localhost:1337/healthz"
115+
url = "http://localhost:13337/healthz"
116116
interval = 3
117117
threshold = 10
118118
}

examples/templates/aws-linux/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ resource "coder_app" "code-server" {
9292
icon = "/icon/code.svg"
9393

9494
healthcheck {
95-
url = "http://localhost:1337/healthz"
95+
url = "http://localhost:13337/healthz"
9696
interval = 3
9797
threshold = 10
9898
}

examples/templates/bare/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ resource "coder_app" "fake-app" {
4949
url = "http://localhost:8080"
5050

5151
healthcheck {
52-
url = "http://localhost:1337/healthz"
52+
url = "http://localhost:8080/healthz"
5353
interval = 3
5454
threshold = 10
5555
}

examples/templates/docker-image-builds/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ resource "coder_app" "code-server" {
4040
icon = "/icon/code.svg"
4141

4242
healthcheck {
43-
url = "http://localhost:1337/healthz"
43+
url = "http://localhost:13337/healthz"
4444
interval = 3
4545
threshold = 10
4646
}

examples/templates/gcp-linux/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ resource "coder_app" "code-server" {
6767
subdomain = false
6868

6969
healthcheck {
70-
url = "http://localhost:1337/healthz"
70+
url = "http://localhost:13337/healthz"
7171
interval = 3
7272
threshold = 10
7373
}

examples/templates/gcp-vm-container/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ resource "coder_app" "code-server" {
5757
subdomain = false
5858

5959
healthcheck {
60-
url = "http://localhost:1337/healthz"
60+
url = "http://localhost:13337/healthz"
6161
interval = 3
6262
threshold = 10
6363
}

examples/templates/kubernetes/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ resource "coder_app" "code-server" {
7878
subdomain = false
7979

8080
healthcheck {
81-
url = "http://localhost:1337/healthz"
81+
url = "http://localhost:13337/healthz"
8282
interval = 3
8383
threshold = 10
8484
}

0 commit comments

Comments
 (0)