|
|
@ -47,13 +47,11 @@ module "filebrowser" {
|
|
|
|
|
|
|
|
|
|
|
|
### Serve from the same domain (no subdomain)
|
|
|
|
### Serve from the same domain (no subdomain)
|
|
|
|
|
|
|
|
|
|
|
|
Make sure to set both workspace_name and owner_name.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```tf
|
|
|
|
```tf
|
|
|
|
module "filebrowser" {
|
|
|
|
module "filebrowser" {
|
|
|
|
source = "registry.coder.com/modules/filebrowser/coder"
|
|
|
|
source = "registry.coder.com/modules/filebrowser/coder"
|
|
|
|
agent_id = coder_agent.main.id
|
|
|
|
agent_id = coder_agent.main.id
|
|
|
|
workspace_name = data.coder_workspace.me.name
|
|
|
|
subdomain = false
|
|
|
|
owner_name = data.coder_workspace_owner.me.name
|
|
|
|
agent_name = "main"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```
|