diff --git a/code-server/README.md b/code-server/README.md index 018a0e5..c505e83 100644 --- a/code-server/README.md +++ b/code-server/README.md @@ -14,7 +14,7 @@ Automatically install [code-server](https://github.com/coder/code-server) in a w ```tf module "code-server" { source = "registry.coder.com/modules/code-server/coder" - version = "1.0.5" + version = "1.0.8" agent_id = coder_agent.example.id } ``` @@ -28,7 +28,7 @@ module "code-server" { ```tf module "code-server" { source = "registry.coder.com/modules/code-server/coder" - version = "1.0.5" + version = "1.0.8" agent_id = coder_agent.example.id install_version = "4.8.3" } @@ -41,7 +41,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/): ```tf module "code-server" { source = "registry.coder.com/modules/code-server/coder" - version = "1.0.5" + version = "1.0.8" agent_id = coder_agent.example.id extensions = [ "dracula-theme.theme-dracula" @@ -58,7 +58,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte ```tf module "code-server" { source = "registry.coder.com/modules/code-server/coder" - version = "1.0.5" + version = "1.0.8" agent_id = coder_agent.example.id extensions = ["dracula-theme.theme-dracula"] settings = { @@ -74,7 +74,7 @@ Just run code-server in the background, don't fetch it from GitHub: ```tf module "code-server" { source = "registry.coder.com/modules/code-server/coder" - version = "1.0.5" + version = "1.0.8" agent_id = coder_agent.example.id extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"] } diff --git a/code-server/main.tf b/code-server/main.tf index cdb09f8..dc0e6bd 100644 --- a/code-server/main.tf +++ b/code-server/main.tf @@ -90,6 +90,7 @@ resource "coder_script" "code-server" { script = templatefile("${path.module}/run.sh", { VERSION : var.install_version, EXTENSIONS : join(",", var.extensions), + APP_NAME : var.display_name, PORT : var.port, LOG_PATH : var.log_path, INSTALL_PREFIX : var.install_prefix, diff --git a/code-server/run.sh b/code-server/run.sh index 1212beb..f6229f3 100755 --- a/code-server/run.sh +++ b/code-server/run.sh @@ -47,4 +47,4 @@ fi echo "👷 Running code-server in the background..." echo "Check logs at ${LOG_PATH}!" -$CODE_SERVER --auth none --port ${PORT} > ${LOG_PATH} 2>&1 & +$CODE_SERVER --auth none --port ${PORT} --app-name "${APP_NAME}" > ${LOG_PATH} 2>&1 & diff --git a/filebrowser/README.md b/filebrowser/README.md index 781e122..2881376 100644 --- a/filebrowser/README.md +++ b/filebrowser/README.md @@ -14,7 +14,7 @@ A file browser for your workspace. ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.3" + version = "1.0.8" agent_id = coder_agent.example.id } ``` @@ -28,7 +28,7 @@ module "filebrowser" { ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.3" + version = "1.0.8" agent_id = coder_agent.example.id folder = "/home/coder/project" } @@ -39,7 +39,7 @@ module "filebrowser" { ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.3" + version = "1.0.8" agent_id = coder_agent.example.id database_path = ".config/filebrowser.db" } diff --git a/jetbrains-gateway/README.md b/jetbrains-gateway/README.md index a9c6ac3..f4eab32 100644 --- a/jetbrains-gateway/README.md +++ b/jetbrains-gateway/README.md @@ -14,7 +14,7 @@ This module adds a JetBrains Gateway Button to open any workspace with a single ```tf module "jetbrains_gateway" { source = "registry.coder.com/modules/jetbrains-gateway/coder" - version = "1.0.6" + version = "1.0.8" agent_id = coder_agent.example.id agent_name = "example" folder = "/home/coder/example" @@ -32,7 +32,7 @@ module "jetbrains_gateway" { ```tf module "jetbrains_gateway" { source = "registry.coder.com/modules/jetbrains-gateway/coder" - version = "1.0.6" + version = "1.0.8" agent_id = coder_agent.example.id agent_name = "example" folder = "/home/coder/example" diff --git a/jupyter-notebook/README.md b/jupyter-notebook/README.md index 8afd715..6338f11 100644 --- a/jupyter-notebook/README.md +++ b/jupyter-notebook/README.md @@ -16,7 +16,7 @@ A module that adds Jupyter Notebook in your Coder template. ```tf module "jupyter-notebook" { source = "registry.coder.com/modules/jupyter-notebook/coder" - version = "1.0.2" + version = "1.0.8" agent_id = coder_agent.example.id } ``` diff --git a/jupyterlab/README.md b/jupyterlab/README.md index a9899ee..3d04cf3 100644 --- a/jupyterlab/README.md +++ b/jupyterlab/README.md @@ -16,7 +16,7 @@ A module that adds JupyterLab in your Coder template. ```tf module "jupyterlab" { source = "registry.coder.com/modules/jupyterlab/coder" - version = "1.0.2" + version = "1.0.8" agent_id = coder_agent.example.id } ``` diff --git a/nodejs/README.md b/nodejs/README.md index 8ab0444..14b701c 100644 --- a/nodejs/README.md +++ b/nodejs/README.md @@ -14,7 +14,7 @@ Automatically installs [Node.js](https://github.com/nodejs/node) via [nvm](https ```tf module "nodejs" { source = "registry.coder.com/modules/nodejs/coder" - version = "1.0.2" + version = "1.0.8" agent_id = coder_agent.example.id } ``` @@ -26,7 +26,7 @@ This installs multiple versions of Node.js: ```tf module "nodejs" { source = "registry.coder.com/modules/nodejs/coder" - version = "1.0.2" + version = "1.0.8" agent_id = coder_agent.example.id node_versions = [ "18", @@ -44,7 +44,7 @@ A example with all available options: ```tf module "nodejs" { source = "registry.coder.com/modules/nodejs/coder" - version = "1.0.2" + version = "1.0.8" agent_id = coder_agent.example.id nvm_version = "v0.39.7" nvm_install_prefix = "/opt/nvm" diff --git a/vscode-desktop/README.md b/vscode-desktop/README.md index 6b33267..e0d1ff2 100644 --- a/vscode-desktop/README.md +++ b/vscode-desktop/README.md @@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder) ```tf module "vscode" { source = "registry.coder.com/modules/vscode-desktop/coder" - version = "1.0.2" + version = "1.0.8" agent_id = coder_agent.example.id } ``` @@ -28,7 +28,7 @@ module "vscode" { ```tf module "vscode" { source = "registry.coder.com/modules/vscode-desktop/coder" - version = "1.0.2" + version = "1.0.8" agent_id = coder_agent.example.id folder = "/home/coder/project" } diff --git a/vscode-web/README.md b/vscode-web/README.md index 0fefe42..d16a0eb 100644 --- a/vscode-web/README.md +++ b/vscode-web/README.md @@ -14,7 +14,7 @@ Automatically install [Visual Studio Code Server](https://code.visualstudio.com/ ```tf module "vscode-web" { source = "registry.coder.com/modules/vscode-web/coder" - version = "1.0.6" + version = "1.0.8" agent_id = coder_agent.example.id accept_license = true } @@ -29,7 +29,7 @@ module "vscode-web" { ```tf module "vscode-web" { source = "registry.coder.com/modules/vscode-web/coder" - version = "1.0.6" + version = "1.0.8" agent_id = coder_agent.example.id install_prefix = "/home/coder/.vscode-web" folder = "/home/coder" @@ -42,7 +42,7 @@ module "vscode-web" { ```tf module "vscode-web" { source = "registry.coder.com/modules/vscode-web/coder" - version = "1.0.6" + version = "1.0.8" agent_id = coder_agent.example.id extensions = ["github.copilot", "ms-python.python", "ms-toolsai.jupyter"] accept_license = true