Static URL for coder workspaces

Hey there, We're looking to use coder to interact with some third party APIs. As part of that, we have to register the coder URLs on an allow-list. Is it possible to use static / consistent URLs for coder workspaces? Is it as simple as always naming the workspace the same name? (We also need to support webhooks coming into the workspace, which would also be solved by consistent URL names)
10 Replies
Codercord
Codercord2w ago
<#1353793070101041302>
Category
Help needed
Product
Coder (v2)
Platform
Linux
Logs
Please post any relevant logs/error messages.
Atif
Atif2w ago
Yes you can. Workspace names need to be unique per user
Phorcys
Phorcys2w ago
you should use a username + workspace name combination for uniqueness, this is how we do it @Liam_code
Liam_code
Liam_codeOP2w ago
okay, great! That's easy
Phorcys
Phorcys2w ago
also, you can set up a coder_app and share it publicly if you'd want
Liam_code
Liam_codeOP2w ago
would that allow multiple people to contribute to it?
Phorcys
Phorcys2w ago
sorry, got sidetracked and forgot to explain fully are you familiar with coder_apps at all?
Liam_code
Liam_codeOP2w ago
nope!
Phorcys
Phorcys2w ago
alright, let me give you an example whoops -- i'm back
resource "coder_app" "vscode-web" {
agent_id = # [...]

slug = "vscode-web"
url = "http://localhost:3000"

display_name = "VSCode Web"
icon = "/icon/code.svg"
}
resource "coder_app" "vscode-web" {
agent_id = # [...]

slug = "vscode-web"
url = "http://localhost:3000"

display_name = "VSCode Web"
icon = "/icon/code.svg"
}
in this context, Coder will act as a reverse-proxy for the app listening on http://localhost:3000 and give access to the owner of the workspace the URL is something like this: https://<SLUG>--<AGENT NAME>--<WORKSPACE NAME>--<WORKSPACE OWNER>--apps.dev.coder.com in this case, for my workspace it'd be https://vscode-web--dev--test--phorcys--apps.dev.coder.com if you set share = "public" it'll be accessible from everywhere, even unauthenticated people https://registry.terraform.io/providers/coder/coder/latest/docs/resources/app#share-1 so in this case you get a URL you can guess, depending on your use-case it might work out
Liam_code
Liam_codeOP2w ago
yeah, I'm not too worried about having a guessable URL I'll take a look at the docs, thanks!

Did you find this page helpful?