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
<#1353793070101041302>
Category
Help needed
Product
Coder (v2)
Platform
Linux
Logs
Please post any relevant logs/error messages.
Yes you can. Workspace names need to be unique per user
you should use a username + workspace name combination for uniqueness, this is how we do it
@Liam_code
okay, great! That's easy
also, you can set up a
coder_app
and share it publicly if you'd wantwould that allow multiple people to contribute to it?
sorry, got sidetracked and forgot to explain fully
are you familiar with
coder_app
s at all?nope!
alright, let me give you an example
whoops -- i'm back
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 outyeah, I'm not too worried about having a guessable URL
I'll take a look at the docs, thanks!