Skip to content

fix: Change use of 1337 to 13337 in example templates #4386

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
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
fix: Change use of 1337 to 13337 in example templates
  • Loading branch information
mafredri committed Oct 6, 2022
commit 8a3fbff7ebdd8f54d60799d9c01976f95e4eff55
2 changes: 1 addition & 1 deletion dogfood/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/aws-ecs-container/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/aws-linux/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/bare/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/docker-image-builds/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/gcp-linux/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/gcp-vm-container/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/kubernetes/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down