From af79d0a5ecd68b94bab0fb64d2bae0be0e74b567 Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Thu, 29 May 2025 20:27:30 +0000 Subject: [PATCH 1/6] feat: add group attributes to all modules --- registry/coder/modules/aider/main.tf | 71 ++++++++++--------- .../coder/modules/amazon-dcv-windows/main.tf | 14 ++++ registry/coder/modules/amazon-q/main.tf | 24 ++++--- registry/coder/modules/claude-code/main.tf | 22 ++++-- registry/coder/modules/code-server/main.tf | 7 ++ registry/coder/modules/cursor/main.tf | 7 ++ registry/coder/modules/dotfiles/main.tf | 14 ++++ registry/coder/modules/filebrowser/main.tf | 9 ++- registry/coder/modules/goose/main.tf | 28 +++++--- .../coder/modules/jetbrains-gateway/main.tf | 7 ++ .../coder/modules/jupyter-notebook/main.tf | 7 ++ registry/coder/modules/jupyterlab/main.tf | 7 ++ registry/coder/modules/kasmvnc/main.tf | 14 ++++ registry/coder/modules/vscode-desktop/main.tf | 8 +++ registry/coder/modules/vscode-web/main.tf | 7 ++ registry/coder/modules/windsurf/main.tf | 7 ++ 16 files changed, 195 insertions(+), 58 deletions(-) diff --git a/registry/coder/modules/aider/main.tf b/registry/coder/modules/aider/main.tf index 77639df36..390934a6a 100644 --- a/registry/coder/modules/aider/main.tf +++ b/registry/coder/modules/aider/main.tf @@ -24,6 +24,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "icon" { type = string description = "The icon to use for the app." @@ -224,17 +230,17 @@ resource "coder_script" "aider" { } echo "Setting up Aider AI pair programming..." - + if [ "${var.use_screen}" = "true" ] && [ "${var.use_tmux}" = "true" ]; then echo "Error: Both use_screen and use_tmux cannot be enabled at the same time." exit 1 fi - + mkdir -p "${var.folder}" if [ "$(uname)" = "Linux" ]; then echo "Checking dependencies for Linux..." - + if [ "${var.use_tmux}" = "true" ]; then if ! command_exists tmux; then echo "Installing tmux for persistent sessions..." @@ -296,7 +302,7 @@ resource "coder_script" "aider" { if [ "${var.install_aider}" = "true" ]; then echo "Installing Aider..." - + if ! command_exists python3 || ! command_exists pip3; then echo "Installing Python dependencies required for Aider..." if command -v apt-get >/dev/null 2>&1; then @@ -319,37 +325,37 @@ resource "coder_script" "aider" { else echo "Python is already installed, skipping installation." fi - + if ! command_exists aider; then curl -LsSf https://aider.chat/install.sh | sh fi - + if [ -f "$HOME/.bashrc" ]; then if ! grep -q 'export PATH="$HOME/bin:$PATH"' "$HOME/.bashrc"; then echo 'export PATH="$HOME/bin:$PATH"' >> "$HOME/.bashrc" fi fi - + if [ -f "$HOME/.zshrc" ]; then if ! grep -q 'export PATH="$HOME/bin:$PATH"' "$HOME/.zshrc"; then echo 'export PATH="$HOME/bin:$PATH"' >> "$HOME/.zshrc" fi fi - + fi - + if [ -n "${local.encoded_post_install_script}" ]; then echo "Running post-install script..." echo "${local.encoded_post_install_script}" | base64 -d > /tmp/post_install.sh chmod +x /tmp/post_install.sh /tmp/post_install.sh fi - + if [ "${var.experiment_report_tasks}" = "true" ]; then echo "Configuring Aider to report tasks via Coder MCP..." - + mkdir -p "$HOME/.config/aider" - + cat > "$HOME/.config/aider/config.yml" << EOL ${trimspace(local.combined_extensions)} EOL @@ -357,29 +363,29 @@ EOL fi echo "Starting persistent Aider session..." - + touch "$HOME/.aider.log" - + export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 - + export PATH="$HOME/bin:$PATH" - + if [ "${var.use_tmux}" = "true" ]; then if [ -n "${var.task_prompt}" ]; then echo "Running Aider with message in tmux session..." - + # Configure tmux for shared sessions if [ ! -f "$HOME/.tmux.conf" ]; then echo "Creating ~/.tmux.conf with shared session settings..." echo "set -g mouse on" > "$HOME/.tmux.conf" fi - + if ! grep -q "^set -g mouse on$" "$HOME/.tmux.conf"; then echo "Adding 'set -g mouse on' to ~/.tmux.conf..." echo "set -g mouse on" >> "$HOME/.tmux.conf" fi - + echo "Starting Aider using ${var.ai_provider} provider and model: ${var.ai_model}" tmux new-session -d -s ${var.session_name} -c ${var.folder} "export ${local.env_var_name}=\"${var.ai_api_key}\"; aider --architect --yes-always ${local.model_flag} ${var.ai_model} --message \"${local.combined_prompt}\"" echo "Aider task started in tmux session '${var.session_name}'. Check the UI for progress." @@ -389,12 +395,12 @@ EOL echo "Creating ~/.tmux.conf with shared session settings..." echo "set -g mouse on" > "$HOME/.tmux.conf" fi - + if ! grep -q "^set -g mouse on$" "$HOME/.tmux.conf"; then echo "Adding 'set -g mouse on' to ~/.tmux.conf..." echo "set -g mouse on" >> "$HOME/.tmux.conf" fi - + echo "Starting Aider using ${var.ai_provider} provider and model: ${var.ai_model}" tmux new-session -d -s ${var.session_name} -c ${var.folder} "export ${local.env_var_name}=\"${var.ai_api_key}\"; aider --architect --yes-always ${local.model_flag} ${var.ai_model} --message \"${var.system_prompt}\"" echo "Tmux session '${var.session_name}' started. Access it by clicking the Aider button." @@ -402,12 +408,12 @@ EOL else if [ -n "${var.task_prompt}" ]; then echo "Running Aider with message in screen session..." - + if [ ! -f "$HOME/.screenrc" ]; then echo "Creating ~/.screenrc and adding multiuser settings..." echo -e "multiuser on\nacladd $(whoami)" > "$HOME/.screenrc" fi - + if ! grep -q "^multiuser on$" "$HOME/.screenrc"; then echo "Adding 'multiuser on' to ~/.screenrc..." echo "multiuser on" >> "$HOME/.screenrc" @@ -417,7 +423,7 @@ EOL echo "Adding 'acladd $(whoami)' to ~/.screenrc..." echo "acladd $(whoami)" >> "$HOME/.screenrc" fi - + echo "Starting Aider using ${var.ai_provider} provider and model: ${var.ai_model}" screen -U -dmS ${var.session_name} bash -c " cd ${var.folder} @@ -426,15 +432,15 @@ EOL aider --architect --yes-always ${local.model_flag} ${var.ai_model} --message \"${local.combined_prompt}\" /bin/bash " - + echo "Aider task started in screen session '${var.session_name}'. Check the UI for progress." else - + if [ ! -f "$HOME/.screenrc" ]; then echo "Creating ~/.screenrc and adding multiuser settings..." echo -e "multiuser on\nacladd $(whoami)" > "$HOME/.screenrc" fi - + if ! grep -q "^multiuser on$" "$HOME/.screenrc"; then echo "Adding 'multiuser on' to ~/.screenrc..." echo "multiuser on" >> "$HOME/.screenrc" @@ -444,7 +450,7 @@ EOL echo "Adding 'acladd $(whoami)' to ~/.screenrc..." echo "acladd $(whoami)" >> "$HOME/.screenrc" fi - + echo "Starting Aider using ${var.ai_provider} provider and model: ${var.ai_model}" screen -U -dmS ${var.session_name} bash -c " cd ${var.folder} @@ -456,7 +462,7 @@ EOL echo "Screen session '${var.session_name}' started. Access it by clicking the Aider button." fi fi - + echo "Aider setup complete!" EOT run_on_start = true @@ -471,12 +477,12 @@ resource "coder_app" "aider_cli" { command = <<-EOT #!/bin/bash set -e - + export PATH="$HOME/bin:$HOME/.local/bin:$PATH" - + export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 - + if [ "${var.use_tmux}" = "true" ]; then if tmux has-session -t ${var.session_name} 2>/dev/null; then echo "Attaching to existing Aider tmux session..." @@ -499,4 +505,5 @@ resource "coder_app" "aider_cli" { fi EOT order = var.order + group = var.group } diff --git a/registry/coder/modules/amazon-dcv-windows/main.tf b/registry/coder/modules/amazon-dcv-windows/main.tf index 90058af3a..db6fe9f9c 100644 --- a/registry/coder/modules/amazon-dcv-windows/main.tf +++ b/registry/coder/modules/amazon-dcv-windows/main.tf @@ -9,6 +9,18 @@ terraform { } } +variable "order" { + type = number + description = "The order determines the position of app in the UI presentation. The lowest order is shown first and apps with equal order are sorted by name (ascending order)." + default = null +} + +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "agent_id" { type = string description = "The ID of a Coder agent." @@ -45,6 +57,8 @@ resource "coder_app" "web-dcv" { url = "https://localhost:${var.port}${local.web_url_path}?username=${local.admin_username}&password=${var.admin_password}" icon = "/icon/dcv.svg" subdomain = var.subdomain + order = var.order + group = var.group } resource "coder_script" "install-dcv" { diff --git a/registry/coder/modules/amazon-q/main.tf b/registry/coder/modules/amazon-q/main.tf index 52cc6fdff..47d1079b2 100644 --- a/registry/coder/modules/amazon-q/main.tf +++ b/registry/coder/modules/amazon-q/main.tf @@ -24,6 +24,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "icon" { type = string description = "The icon to use for the app." @@ -213,7 +219,7 @@ resource "coder_script" "amazon_q" { fi if [ "${var.experiment_report_tasks}" = "true" ]; then - echo "Configuring Amazon Q to report tasks via Coder MCP..." + echo "Configuring Amazon Q to report tasks via Coder MCP..." mkdir -p ~/.aws/amazonq echo "${local.encoded_mcp_json}" | base64 -d > ~/.aws/amazonq/mcp.json echo "Created the ~/.aws/amazonq/mcp.json configuration file" @@ -227,19 +233,19 @@ resource "coder_script" "amazon_q" { if [ "${var.experiment_use_tmux}" = "true" ]; then echo "Running Amazon Q in the background with tmux..." - + if ! command_exists tmux; then echo "Error: tmux is not installed. Please install tmux manually." exit 1 fi touch "$HOME/.amazon-q.log" - + export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 - + tmux new-session -d -s amazon-q -c "${var.folder}" "q chat --trust-all-tools | tee -a "$HOME/.amazon-q.log" && exec bash" - + tmux send-keys -t amazon-q "${local.full_prompt}" sleep 5 tmux send-keys -t amazon-q Enter @@ -247,7 +253,7 @@ resource "coder_script" "amazon_q" { if [ "${var.experiment_use_screen}" = "true" ]; then echo "Running Amazon Q in the background..." - + if ! command_exists screen; then echo "Error: screen is not installed. Please install screen manually." exit 1 @@ -259,7 +265,7 @@ resource "coder_script" "amazon_q" { echo "Creating ~/.screenrc and adding multiuser settings..." | tee -a "$HOME/.amazon-q.log" echo -e "multiuser on\nacladd $(whoami)" > "$HOME/.screenrc" fi - + if ! grep -q "^multiuser on$" "$HOME/.screenrc"; then echo "Adding 'multiuser on' to ~/.screenrc..." | tee -a "$HOME/.amazon-q.log" echo "multiuser on" >> "$HOME/.screenrc" @@ -271,7 +277,7 @@ resource "coder_script" "amazon_q" { fi export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 - + screen -U -dmS amazon-q bash -c ' cd ${var.folder} q chat --trust-all-tools | tee -a "$HOME/.amazon-q.log @@ -326,4 +332,6 @@ resource "coder_app" "amazon_q" { fi EOT icon = var.icon + order = var.order + group = var.group } diff --git a/registry/coder/modules/claude-code/main.tf b/registry/coder/modules/claude-code/main.tf index cc7b27e07..411ca816c 100644 --- a/registry/coder/modules/claude-code/main.tf +++ b/registry/coder/modules/claude-code/main.tf @@ -24,6 +24,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "icon" { type = string description = "The icon to use for the app." @@ -138,7 +144,7 @@ resource "coder_script" "claude_code" { # Run with tmux if enabled if [ "${var.experiment_use_tmux}" = "true" ]; then echo "Running Claude Code in the background with tmux..." - + # Check if tmux is installed if ! command_exists tmux; then echo "Error: tmux is not installed. Please install tmux manually." @@ -146,13 +152,13 @@ resource "coder_script" "claude_code" { fi touch "$HOME/.claude-code.log" - + export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 - + # Create a new tmux session in detached mode tmux new-session -d -s claude-code -c ${var.folder} "claude --dangerously-skip-permissions" - + # Send the prompt to the tmux session if needed if [ -n "$CODER_MCP_CLAUDE_TASK_PROMPT" ]; then tmux send-keys -t claude-code "$CODER_MCP_CLAUDE_TASK_PROMPT" @@ -164,7 +170,7 @@ resource "coder_script" "claude_code" { # Run with screen if enabled if [ "${var.experiment_use_screen}" = "true" ]; then echo "Running Claude Code in the background..." - + # Check if screen is installed if ! command_exists screen; then echo "Error: screen is not installed. Please install screen manually." @@ -178,7 +184,7 @@ resource "coder_script" "claude_code" { echo "Creating ~/.screenrc and adding multiuser settings..." | tee -a "$HOME/.claude-code.log" echo -e "multiuser on\nacladd $(whoami)" > "$HOME/.screenrc" fi - + if ! grep -q "^multiuser on$" "$HOME/.screenrc"; then echo "Adding 'multiuser on' to ~/.screenrc..." | tee -a "$HOME/.claude-code.log" echo "multiuser on" >> "$HOME/.screenrc" @@ -190,7 +196,7 @@ resource "coder_script" "claude_code" { fi export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 - + screen -U -dmS claude-code bash -c ' cd ${var.folder} claude --dangerously-skip-permissions | tee -a "$HOME/.claude-code.log" @@ -246,4 +252,6 @@ resource "coder_app" "claude_code" { fi EOT icon = var.icon + order = var.order + group = var.group } diff --git a/registry/coder/modules/code-server/main.tf b/registry/coder/modules/code-server/main.tf index b4e3d2597..5b4fdaeff 100644 --- a/registry/coder/modules/code-server/main.tf +++ b/registry/coder/modules/code-server/main.tf @@ -89,6 +89,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "offline" { type = bool description = "Just run code-server in the background, don't fetch it from GitHub" @@ -187,6 +193,7 @@ resource "coder_app" "code-server" { subdomain = var.subdomain share = var.share order = var.order + group = var.group open_in = var.open_in healthcheck { diff --git a/registry/coder/modules/cursor/main.tf b/registry/coder/modules/cursor/main.tf index 89b320f7f..c37355fbc 100644 --- a/registry/coder/modules/cursor/main.tf +++ b/registry/coder/modules/cursor/main.tf @@ -32,6 +32,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "slug" { type = string description = "The slug of the app." @@ -54,6 +60,7 @@ resource "coder_app" "cursor" { slug = var.slug display_name = var.display_name order = var.order + group = var.group url = join("", [ "cursor://coder.coder-remote/open", "?owner=", diff --git a/registry/coder/modules/dotfiles/main.tf b/registry/coder/modules/dotfiles/main.tf index 9bc3735e0..afde3e748 100644 --- a/registry/coder/modules/dotfiles/main.tf +++ b/registry/coder/modules/dotfiles/main.tf @@ -9,6 +9,18 @@ terraform { } } +variable "order" { + type = number + description = "The order determines the position of app in the UI presentation. The lowest order is shown first and apps with equal order are sorted by name (ascending order)." + default = null +} + +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "agent_id" { type = string description = "The ID of a Coder agent." @@ -79,6 +91,8 @@ resource "coder_app" "dotfiles" { display_name = "Refresh Dotfiles" slug = "dotfiles" icon = "/icon/dotfiles.svg" + order = var.order + group = var.group command = templatefile("${path.module}/run.sh", { DOTFILES_URI : local.dotfiles_uri, DOTFILES_USER : local.user diff --git a/registry/coder/modules/filebrowser/main.tf b/registry/coder/modules/filebrowser/main.tf index ba83844b0..0b31c9cc8 100644 --- a/registry/coder/modules/filebrowser/main.tf +++ b/registry/coder/modules/filebrowser/main.tf @@ -68,6 +68,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "slug" { type = string description = "The slug of the coder_app resource." @@ -108,6 +114,7 @@ resource "coder_app" "filebrowser" { subdomain = var.subdomain share = var.share order = var.order + group = var.group healthcheck { url = local.healthcheck_url @@ -120,4 +127,4 @@ locals { server_base_path = var.subdomain ? "" : format("/@%s/%s%s/apps/%s", data.coder_workspace_owner.me.name, data.coder_workspace.me.name, var.agent_name != null ? ".${var.agent_name}" : "", var.slug) url = "http://localhost:${var.port}${local.server_base_path}" healthcheck_url = "http://localhost:${var.port}${local.server_base_path}/health" -} \ No newline at end of file +} diff --git a/registry/coder/modules/goose/main.tf b/registry/coder/modules/goose/main.tf index bd0f23d1e..07999b19f 100644 --- a/registry/coder/modules/goose/main.tf +++ b/registry/coder/modules/goose/main.tf @@ -24,6 +24,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "icon" { type = string description = "The icon to use for the app." @@ -194,11 +200,11 @@ GOOSE_MODEL: ${var.experiment_goose_model} ${trimspace(local.combined_extensions)} EOL fi - + # Write system prompt to config mkdir -p "$HOME/.config/goose" echo "$GOOSE_SYSTEM_PROMPT" > "$HOME/.config/goose/.goosehints" - + # Handle terminal multiplexer selection (tmux or screen) if [ "${var.experiment_use_tmux}" = "true" ] && [ "${var.experiment_use_screen}" = "true" ]; then echo "Error: Both experiment_use_tmux and experiment_use_screen cannot be true simultaneously." @@ -219,7 +225,7 @@ EOL # Run with tmux if enabled if [ "${var.experiment_use_tmux}" = "true" ]; then echo "Running Goose in the background with tmux..." - + # Check if tmux is installed if ! command_exists tmux; then echo "Error: tmux is not installed. Please install tmux manually." @@ -227,26 +233,26 @@ EOL fi touch "$HOME/.goose.log" - + export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 - + # Configure tmux for shared sessions if [ ! -f "$HOME/.tmux.conf" ]; then echo "Creating ~/.tmux.conf with shared session settings..." echo "set -g mouse on" > "$HOME/.tmux.conf" fi - + if ! grep -q "^set -g mouse on$" "$HOME/.tmux.conf"; then echo "Adding 'set -g mouse on' to ~/.tmux.conf..." echo "set -g mouse on" >> "$HOME/.tmux.conf" fi - + # Create a new tmux session in detached mode tmux new-session -d -s ${var.session_name} -c ${var.folder} "\"$GOOSE_CMD\" run --text \"Review your goosehints. Every step of the way, report tasks to Coder with proper descriptions and statuses. Your task at hand: $GOOSE_TASK_PROMPT\" --interactive | tee -a \"$HOME/.goose.log\"; exec bash" elif [ "${var.experiment_use_screen}" = "true" ]; then echo "Running Goose in the background..." - + # Check if screen is installed if ! command_exists screen; then echo "Error: screen is not installed. Please install screen manually." @@ -260,7 +266,7 @@ EOL echo "Creating ~/.screenrc and adding multiuser settings..." | tee -a "$HOME/.goose.log" echo -e "multiuser on\nacladd $(whoami)" > "$HOME/.screenrc" fi - + if ! grep -q "^multiuser on$" "$HOME/.screenrc"; then echo "Adding 'multiuser on' to ~/.screenrc..." | tee -a "$HOME/.goose.log" echo "multiuser on" >> "$HOME/.screenrc" @@ -272,7 +278,7 @@ EOL fi export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 - + screen -U -dmS ${var.session_name} bash -c " cd ${var.folder} \"$GOOSE_CMD\" run --text \"Review your goosehints. Every step of the way, report tasks to Coder with proper descriptions and statuses. Your task at hand: $GOOSE_TASK_PROMPT\" --interactive | tee -a \"$HOME/.goose.log\" @@ -331,4 +337,6 @@ resource "coder_app" "goose" { fi EOT icon = var.icon + order = var.order + group = var.group } diff --git a/registry/coder/modules/jetbrains-gateway/main.tf b/registry/coder/modules/jetbrains-gateway/main.tf index 50ca6f1ec..c5c387efb 100644 --- a/registry/coder/modules/jetbrains-gateway/main.tf +++ b/registry/coder/modules/jetbrains-gateway/main.tf @@ -62,6 +62,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "coder_parameter_order" { type = number description = "The order determines the position of a template parameter in the UI/CLI presentation. The lowest order is shown first and parameters with equal order are sorted by name (ascending order)." @@ -324,6 +330,7 @@ resource "coder_app" "gateway" { icon = local.icon external = true order = var.order + group = var.group url = join("", [ "jetbrains-gateway://connect#type=coder&workspace=", data.coder_workspace.me.name, diff --git a/registry/coder/modules/jupyter-notebook/main.tf b/registry/coder/modules/jupyter-notebook/main.tf index a588ef158..5c3dea831 100644 --- a/registry/coder/modules/jupyter-notebook/main.tf +++ b/registry/coder/modules/jupyter-notebook/main.tf @@ -42,6 +42,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + resource "coder_script" "jupyter-notebook" { agent_id = var.agent_id display_name = "jupyter-notebook" @@ -62,4 +68,5 @@ resource "coder_app" "jupyter-notebook" { subdomain = true share = var.share order = var.order + group = var.group } diff --git a/registry/coder/modules/jupyterlab/main.tf b/registry/coder/modules/jupyterlab/main.tf index d66edb1c1..0c2e90a52 100644 --- a/registry/coder/modules/jupyterlab/main.tf +++ b/registry/coder/modules/jupyterlab/main.tf @@ -51,6 +51,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + resource "coder_script" "jupyterlab" { agent_id = var.agent_id display_name = "jupyterlab" @@ -72,4 +78,5 @@ resource "coder_app" "jupyterlab" { subdomain = var.subdomain share = var.share order = var.order + group = var.group } diff --git a/registry/coder/modules/kasmvnc/main.tf b/registry/coder/modules/kasmvnc/main.tf index 4265f3c7c..9967a22f7 100644 --- a/registry/coder/modules/kasmvnc/main.tf +++ b/registry/coder/modules/kasmvnc/main.tf @@ -35,6 +35,18 @@ variable "desktop_environment" { } } +variable "order" { + type = number + description = "The order determines the position of app in the UI presentation. The lowest order is shown first and apps with equal order are sorted by name (ascending order)." + default = null +} + +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + resource "coder_script" "kasm_vnc" { agent_id = var.agent_id display_name = "KasmVNC" @@ -55,6 +67,8 @@ resource "coder_app" "kasm_vnc" { icon = "/icon/kasmvnc.svg" subdomain = true share = "owner" + order = var.order + group = var.group healthcheck { url = "http://localhost:${var.port}/app" interval = 5 diff --git a/registry/coder/modules/vscode-desktop/main.tf b/registry/coder/modules/vscode-desktop/main.tf index 16d070b43..769203a85 100644 --- a/registry/coder/modules/vscode-desktop/main.tf +++ b/registry/coder/modules/vscode-desktop/main.tf @@ -32,6 +32,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + data "coder_workspace" "me" {} data "coder_workspace_owner" "me" {} @@ -42,6 +48,8 @@ resource "coder_app" "vscode" { slug = "vscode" display_name = "VS Code Desktop" order = var.order + group = var.group + url = join("", [ "vscode://coder.coder-remote/open", "?owner=", diff --git a/registry/coder/modules/vscode-web/main.tf b/registry/coder/modules/vscode-web/main.tf index 9ffddb258..e50f59141 100644 --- a/registry/coder/modules/vscode-web/main.tf +++ b/registry/coder/modules/vscode-web/main.tf @@ -97,6 +97,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + variable "settings" { type = any description = "A map of settings to apply to VS Code web." @@ -194,6 +200,7 @@ resource "coder_app" "vscode-web" { subdomain = var.subdomain share = var.share order = var.order + group = var.group healthcheck { url = local.healthcheck_url diff --git a/registry/coder/modules/windsurf/main.tf b/registry/coder/modules/windsurf/main.tf index 1d836d7e3..38ffd9437 100644 --- a/registry/coder/modules/windsurf/main.tf +++ b/registry/coder/modules/windsurf/main.tf @@ -32,6 +32,12 @@ variable "order" { default = null } +variable "group" { + type = string + description = "The name of a group that this app belongs to." + default = null +} + data "coder_workspace" "me" {} data "coder_workspace_owner" "me" {} @@ -42,6 +48,7 @@ resource "coder_app" "windsurf" { slug = "windsurf" display_name = "Windsurf Editor" order = var.order + group = var.group url = join("", [ "windsurf://coder.coder-remote/open", "?owner=", From a460fba70663b62fab4d2e6eae4f255a73a69fea Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Thu, 29 May 2025 20:34:52 +0000 Subject: [PATCH 2/6] fmt --- registry/coder/modules/aider/main.tf | 6 +++--- registry/coder/modules/amazon-dcv-windows/main.tf | 6 +++--- registry/coder/modules/amazon-q/main.tf | 6 +++--- registry/coder/modules/claude-code/main.tf | 6 +++--- registry/coder/modules/code-server/main.tf | 6 +++--- registry/coder/modules/cursor/main.tf | 6 +++--- registry/coder/modules/dotfiles/main.tf | 6 +++--- registry/coder/modules/filebrowser/main.tf | 6 +++--- registry/coder/modules/goose/main.tf | 6 +++--- registry/coder/modules/jetbrains-gateway/main.tf | 6 +++--- registry/coder/modules/jupyter-notebook/main.tf | 6 +++--- registry/coder/modules/jupyterlab/main.tf | 6 +++--- registry/coder/modules/kasmvnc/main.tf | 6 +++--- registry/coder/modules/vscode-desktop/main.tf | 6 +++--- registry/coder/modules/vscode-web/main.tf | 6 +++--- registry/coder/modules/windsurf/main.tf | 6 +++--- 16 files changed, 48 insertions(+), 48 deletions(-) diff --git a/registry/coder/modules/aider/main.tf b/registry/coder/modules/aider/main.tf index 390934a6a..e384b506d 100644 --- a/registry/coder/modules/aider/main.tf +++ b/registry/coder/modules/aider/main.tf @@ -25,9 +25,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "icon" { diff --git a/registry/coder/modules/amazon-dcv-windows/main.tf b/registry/coder/modules/amazon-dcv-windows/main.tf index db6fe9f9c..0bc746034 100644 --- a/registry/coder/modules/amazon-dcv-windows/main.tf +++ b/registry/coder/modules/amazon-dcv-windows/main.tf @@ -16,9 +16,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "agent_id" { diff --git a/registry/coder/modules/amazon-q/main.tf b/registry/coder/modules/amazon-q/main.tf index 47d1079b2..3ecb3e330 100644 --- a/registry/coder/modules/amazon-q/main.tf +++ b/registry/coder/modules/amazon-q/main.tf @@ -25,9 +25,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "icon" { diff --git a/registry/coder/modules/claude-code/main.tf b/registry/coder/modules/claude-code/main.tf index 411ca816c..9e33415e8 100644 --- a/registry/coder/modules/claude-code/main.tf +++ b/registry/coder/modules/claude-code/main.tf @@ -25,9 +25,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "icon" { diff --git a/registry/coder/modules/code-server/main.tf b/registry/coder/modules/code-server/main.tf index 5b4fdaeff..3c3a03ac2 100644 --- a/registry/coder/modules/code-server/main.tf +++ b/registry/coder/modules/code-server/main.tf @@ -90,9 +90,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "offline" { diff --git a/registry/coder/modules/cursor/main.tf b/registry/coder/modules/cursor/main.tf index c37355fbc..4c23ac682 100644 --- a/registry/coder/modules/cursor/main.tf +++ b/registry/coder/modules/cursor/main.tf @@ -33,9 +33,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "slug" { diff --git a/registry/coder/modules/dotfiles/main.tf b/registry/coder/modules/dotfiles/main.tf index afde3e748..2208c30f8 100644 --- a/registry/coder/modules/dotfiles/main.tf +++ b/registry/coder/modules/dotfiles/main.tf @@ -16,9 +16,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "agent_id" { diff --git a/registry/coder/modules/filebrowser/main.tf b/registry/coder/modules/filebrowser/main.tf index 0b31c9cc8..d46532d53 100644 --- a/registry/coder/modules/filebrowser/main.tf +++ b/registry/coder/modules/filebrowser/main.tf @@ -69,9 +69,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "slug" { diff --git a/registry/coder/modules/goose/main.tf b/registry/coder/modules/goose/main.tf index 07999b19f..9ac816b91 100644 --- a/registry/coder/modules/goose/main.tf +++ b/registry/coder/modules/goose/main.tf @@ -25,9 +25,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "icon" { diff --git a/registry/coder/modules/jetbrains-gateway/main.tf b/registry/coder/modules/jetbrains-gateway/main.tf index c5c387efb..535edeef5 100644 --- a/registry/coder/modules/jetbrains-gateway/main.tf +++ b/registry/coder/modules/jetbrains-gateway/main.tf @@ -63,9 +63,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "coder_parameter_order" { diff --git a/registry/coder/modules/jupyter-notebook/main.tf b/registry/coder/modules/jupyter-notebook/main.tf index 5c3dea831..43fea1dde 100644 --- a/registry/coder/modules/jupyter-notebook/main.tf +++ b/registry/coder/modules/jupyter-notebook/main.tf @@ -43,9 +43,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } resource "coder_script" "jupyter-notebook" { diff --git a/registry/coder/modules/jupyterlab/main.tf b/registry/coder/modules/jupyterlab/main.tf index 0c2e90a52..8beeeb22e 100644 --- a/registry/coder/modules/jupyterlab/main.tf +++ b/registry/coder/modules/jupyterlab/main.tf @@ -52,9 +52,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } resource "coder_script" "jupyterlab" { diff --git a/registry/coder/modules/kasmvnc/main.tf b/registry/coder/modules/kasmvnc/main.tf index 9967a22f7..7c795dbf5 100644 --- a/registry/coder/modules/kasmvnc/main.tf +++ b/registry/coder/modules/kasmvnc/main.tf @@ -42,9 +42,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } resource "coder_script" "kasm_vnc" { diff --git a/registry/coder/modules/vscode-desktop/main.tf b/registry/coder/modules/vscode-desktop/main.tf index 769203a85..8000afd77 100644 --- a/registry/coder/modules/vscode-desktop/main.tf +++ b/registry/coder/modules/vscode-desktop/main.tf @@ -33,9 +33,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } data "coder_workspace" "me" {} diff --git a/registry/coder/modules/vscode-web/main.tf b/registry/coder/modules/vscode-web/main.tf index e50f59141..30518b2ae 100644 --- a/registry/coder/modules/vscode-web/main.tf +++ b/registry/coder/modules/vscode-web/main.tf @@ -98,9 +98,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } variable "settings" { diff --git a/registry/coder/modules/windsurf/main.tf b/registry/coder/modules/windsurf/main.tf index 38ffd9437..9da26c8e7 100644 --- a/registry/coder/modules/windsurf/main.tf +++ b/registry/coder/modules/windsurf/main.tf @@ -33,9 +33,9 @@ variable "order" { } variable "group" { - type = string - description = "The name of a group that this app belongs to." - default = null + type = string + description = "The name of a group that this app belongs to." + default = null } data "coder_workspace" "me" {} From 2d8cfbb9e11bae8119e2fade033697d658d41e54 Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Fri, 30 May 2025 16:21:12 +0000 Subject: [PATCH 3/6] versions! --- examples/modules/README.md | 8 ++++---- examples/modules/main.tf | 3 +-- registry/coder/modules/aider/README.md | 14 +++++++------- registry/coder/modules/aider/main.tf | 2 +- .../coder/modules/amazon-dcv-windows/README.md | 2 +- registry/coder/modules/amazon-dcv-windows/main.tf | 2 +- registry/coder/modules/amazon-q/README.md | 8 ++++---- registry/coder/modules/amazon-q/main.tf | 2 +- registry/coder/modules/claude-code/README.md | 4 ++-- registry/coder/modules/claude-code/main.tf | 2 +- registry/coder/modules/code-server/README.md | 14 +++++++------- registry/coder/modules/code-server/main.tf | 2 +- registry/coder/modules/cursor/README.md | 4 ++-- registry/coder/modules/cursor/main.tf | 2 +- registry/coder/modules/dotfiles/README.md | 12 ++++++------ registry/coder/modules/dotfiles/main.tf | 2 +- registry/coder/modules/filebrowser/README.md | 8 ++++---- registry/coder/modules/filebrowser/main.tf | 2 +- registry/coder/modules/goose/README.md | 6 +++--- registry/coder/modules/goose/main.tf | 2 +- registry/coder/modules/jetbrains-gateway/README.md | 12 ++++++------ registry/coder/modules/jetbrains-gateway/main.tf | 2 +- registry/coder/modules/jupyter-notebook/README.md | 2 +- registry/coder/modules/jupyter-notebook/main.tf | 2 +- registry/coder/modules/jupyterlab/README.md | 2 +- registry/coder/modules/jupyterlab/main.tf | 2 +- registry/coder/modules/kasmvnc/README.md | 2 +- registry/coder/modules/kasmvnc/main.tf | 2 +- registry/coder/modules/vscode-desktop/README.md | 4 ++-- registry/coder/modules/vscode-desktop/main.tf | 2 +- registry/coder/modules/vscode-web/README.md | 10 +++++----- registry/coder/modules/vscode-web/main.tf | 2 +- registry/coder/modules/windsurf/README.md | 4 ++-- registry/coder/modules/windsurf/main.tf | 2 +- 34 files changed, 75 insertions(+), 76 deletions(-) diff --git a/examples/modules/README.md b/examples/modules/README.md index 80d99231f..9d095f295 100644 --- a/examples/modules/README.md +++ b/examples/modules/README.md @@ -15,7 +15,7 @@ tags: [helper] module "MODULE_NAME" { count = data.coder_workspace.me.start_count source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder" - version = "1.0.2" + version = "1.0.0" } ``` @@ -31,7 +31,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/): module "MODULE_NAME" { count = data.coder_workspace.me.start_count source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder" - version = "1.0.2" + version = "1.0.0" agent_id = coder_agent.example.id extensions = [ "dracula-theme.theme-dracula" @@ -49,7 +49,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte module "MODULE_NAME" { count = data.coder_workspace.me.start_count source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder" - version = "1.0.2" + version = "1.0.0" agent_id = coder_agent.example.id extensions = ["dracula-theme.theme-dracula"] settings = { @@ -65,7 +65,7 @@ Run code-server in the background, don't fetch it from GitHub: ```tf module "MODULE_NAME" { source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder" - version = "1.0.2" + version = "1.0.0" agent_id = coder_agent.example.id offline = true } diff --git a/examples/modules/main.tf b/examples/modules/main.tf index 910320e35..628eb1da5 100644 --- a/examples/modules/main.tf +++ b/examples/modules/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } @@ -105,4 +105,3 @@ data "coder_parameter" "MODULE_NAME" { } } } - diff --git a/registry/coder/modules/aider/README.md b/registry/coder/modules/aider/README.md index a7fc9cced..d4a08fb9d 100644 --- a/registry/coder/modules/aider/README.md +++ b/registry/coder/modules/aider/README.md @@ -14,7 +14,7 @@ Run [Aider](https://aider.chat) AI pair programming in your workspace. This modu ```tf module "aider" { source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id } ``` @@ -69,7 +69,7 @@ variable "anthropic_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key } @@ -94,7 +94,7 @@ variable "openai_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id use_tmux = true ai_provider = "openai" @@ -115,7 +115,7 @@ variable "custom_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id ai_provider = "custom" custom_env_var_name = "MY_CUSTOM_API_KEY" @@ -132,7 +132,7 @@ You can extend Aider's capabilities by adding custom extensions: module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key @@ -189,7 +189,7 @@ Here's a complete example: module "coder-login" { count = data.coder_workspace.me.start_count source = "registry.coder.com/modules/coder-login/coder" - version = "1.0.15" + version = "1.1.05" agent_id = coder_agent.example.id } @@ -211,7 +211,7 @@ data "coder_parameter" "ai_prompt" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key task_prompt = data.coder_parameter.ai_prompt.value diff --git a/registry/coder/modules/aider/main.tf b/registry/coder/modules/aider/main.tf index e384b506d..e1f2eccdf 100644 --- a/registry/coder/modules/aider/main.tf +++ b/registry/coder/modules/aider/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/amazon-dcv-windows/README.md b/registry/coder/modules/amazon-dcv-windows/README.md index 86c6e4078..cd8fb394a 100644 --- a/registry/coder/modules/amazon-dcv-windows/README.md +++ b/registry/coder/modules/amazon-dcv-windows/README.md @@ -19,7 +19,7 @@ Enable DCV Server and Web Client on Windows workspaces. module "dcv" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/amazon-dcv-windows/coder" - version = "1.0.24" + version = "1.1.0" agent_id = resource.coder_agent.main.id } diff --git a/registry/coder/modules/amazon-dcv-windows/main.tf b/registry/coder/modules/amazon-dcv-windows/main.tf index 0bc746034..223e3b785 100644 --- a/registry/coder/modules/amazon-dcv-windows/main.tf +++ b/registry/coder/modules/amazon-dcv-windows/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/amazon-q/README.md b/registry/coder/modules/amazon-q/README.md index 0713602e8..7dc99643c 100644 --- a/registry/coder/modules/amazon-q/README.md +++ b/registry/coder/modules/amazon-q/README.md @@ -14,7 +14,7 @@ Run [Amazon Q](https://aws.amazon.com/q/) in your workspace to access Amazon's A ```tf module "amazon-q" { source = "registry.coder.com/coder/amazon-q/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id # Required: see below for how to generate experiment_auth_tarball = var.amazon_q_auth_tarball @@ -82,7 +82,7 @@ module "amazon-q" { ```tf module "amazon-q" { source = "registry.coder.com/coder/amazon-q/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id experiment_auth_tarball = var.amazon_q_auth_tarball experiment_use_tmux = true @@ -94,7 +94,7 @@ module "amazon-q" { ```tf module "amazon-q" { source = "registry.coder.com/coder/amazon-q/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id experiment_auth_tarball = var.amazon_q_auth_tarball experiment_report_tasks = true @@ -106,7 +106,7 @@ module "amazon-q" { ```tf module "amazon-q" { source = "registry.coder.com/coder/amazon-q/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id experiment_auth_tarball = var.amazon_q_auth_tarball experiment_pre_install_script = "echo Pre-install!" diff --git a/registry/coder/modules/amazon-q/main.tf b/registry/coder/modules/amazon-q/main.tf index 3ecb3e330..851aa062b 100644 --- a/registry/coder/modules/amazon-q/main.tf +++ b/registry/coder/modules/amazon-q/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/claude-code/README.md b/registry/coder/modules/claude-code/README.md index 9a0437abc..3fe11a055 100644 --- a/registry/coder/modules/claude-code/README.md +++ b/registry/coder/modules/claude-code/README.md @@ -14,7 +14,7 @@ Run the [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude ```tf module "claude-code" { source = "registry.coder.com/coder/claude-code/coder" - version = "1.2.1" + version = "1.3.0" agent_id = coder_agent.example.id folder = "/home/coder" install_claude_code = true @@ -107,7 +107,7 @@ Run Claude Code as a standalone app in your workspace. This will install Claude ```tf module "claude-code" { source = "registry.coder.com/coder/claude-code/coder" - version = "1.2.1" + version = "1.3.0" agent_id = coder_agent.example.id folder = "/home/coder" install_claude_code = true diff --git a/registry/coder/modules/claude-code/main.tf b/registry/coder/modules/claude-code/main.tf index 9e33415e8..18d1dcd95 100644 --- a/registry/coder/modules/claude-code/main.tf +++ b/registry/coder/modules/claude-code/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/code-server/README.md b/registry/coder/modules/code-server/README.md index 9c74b95f4..f994ccd46 100644 --- a/registry/coder/modules/code-server/README.md +++ b/registry/coder/modules/code-server/README.md @@ -15,7 +15,7 @@ Automatically install [code-server](https://github.com/coder/code-server) in a w module "code-server" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/code-server/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id } ``` @@ -30,7 +30,7 @@ module "code-server" { module "code-server" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/code-server/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id install_version = "4.8.3" } @@ -44,7 +44,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/): module "code-server" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/code-server/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id extensions = [ "dracula-theme.theme-dracula" @@ -62,7 +62,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte module "code-server" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/code-server/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id extensions = ["dracula-theme.theme-dracula"] settings = { @@ -79,7 +79,7 @@ Just run code-server in the background, don't fetch it from GitHub: module "code-server" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/code-server/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"] } @@ -95,7 +95,7 @@ Run an existing copy of code-server if found, otherwise download from GitHub: module "code-server" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/code-server/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id use_cached = true extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"] @@ -108,7 +108,7 @@ Just run code-server in the background, don't fetch it from GitHub: module "code-server" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/code-server/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id offline = true } diff --git a/registry/coder/modules/code-server/main.tf b/registry/coder/modules/code-server/main.tf index 3c3a03ac2..650829f68 100644 --- a/registry/coder/modules/code-server/main.tf +++ b/registry/coder/modules/code-server/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 2.1" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/cursor/README.md b/registry/coder/modules/cursor/README.md index 2c500ee1a..6ebb54079 100644 --- a/registry/coder/modules/cursor/README.md +++ b/registry/coder/modules/cursor/README.md @@ -17,7 +17,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder) module "cursor" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cursor/coder" - version = "1.1.0" + version = "1.2.0" agent_id = coder_agent.example.id } ``` @@ -30,7 +30,7 @@ module "cursor" { module "cursor" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cursor/coder" - version = "1.1.0" + version = "1.2.0" agent_id = coder_agent.example.id folder = "/home/coder/project" } diff --git a/registry/coder/modules/cursor/main.tf b/registry/coder/modules/cursor/main.tf index 4c23ac682..47d35b623 100644 --- a/registry/coder/modules/cursor/main.tf +++ b/registry/coder/modules/cursor/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.23" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/dotfiles/README.md b/registry/coder/modules/dotfiles/README.md index 9d087ffde..bae98b969 100644 --- a/registry/coder/modules/dotfiles/README.md +++ b/registry/coder/modules/dotfiles/README.md @@ -19,7 +19,7 @@ Under the hood, this module uses the [coder dotfiles](https://coder.com/docs/v2/ module "dotfiles" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.0.29" + version = "1.1.0" agent_id = coder_agent.example.id } ``` @@ -32,7 +32,7 @@ module "dotfiles" { module "dotfiles" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.0.29" + version = "1.1.0" agent_id = coder_agent.example.id } ``` @@ -43,7 +43,7 @@ module "dotfiles" { module "dotfiles" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.0.29" + version = "1.1.0" agent_id = coder_agent.example.id user = "root" } @@ -55,14 +55,14 @@ module "dotfiles" { module "dotfiles" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.0.29" + version = "1.1.0" agent_id = coder_agent.example.id } module "dotfiles-root" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.0.29" + version = "1.1.0" agent_id = coder_agent.example.id user = "root" dotfiles_uri = module.dotfiles.dotfiles_uri @@ -77,7 +77,7 @@ You can set a default dotfiles repository for all users by setting the `default_ module "dotfiles" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.0.29" + version = "1.1.0" agent_id = coder_agent.example.id default_dotfiles_uri = "https://github.com/coder/dotfiles" } diff --git a/registry/coder/modules/dotfiles/main.tf b/registry/coder/modules/dotfiles/main.tf index 2208c30f8..b96b1e661 100644 --- a/registry/coder/modules/dotfiles/main.tf +++ b/registry/coder/modules/dotfiles/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.12" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/filebrowser/README.md b/registry/coder/modules/filebrowser/README.md index ad6c76c29..d3604179e 100644 --- a/registry/coder/modules/filebrowser/README.md +++ b/registry/coder/modules/filebrowser/README.md @@ -15,7 +15,7 @@ A file browser for your workspace. module "filebrowser" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/filebrowser/coder" - version = "1.0.31" + version = "1.1.0" agent_id = coder_agent.example.id } ``` @@ -30,7 +30,7 @@ module "filebrowser" { module "filebrowser" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/filebrowser/coder" - version = "1.0.31" + version = "1.1.0" agent_id = coder_agent.example.id folder = "/home/coder/project" } @@ -42,7 +42,7 @@ module "filebrowser" { module "filebrowser" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/filebrowser/coder" - version = "1.0.31" + version = "1.1.0" agent_id = coder_agent.example.id database_path = ".config/filebrowser.db" } @@ -54,7 +54,7 @@ module "filebrowser" { module "filebrowser" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/filebrowser/coder" - version = "1.0.31" + version = "1.1.0" agent_id = coder_agent.example.id agent_name = "main" subdomain = false diff --git a/registry/coder/modules/filebrowser/main.tf b/registry/coder/modules/filebrowser/main.tf index d46532d53..3c0178211 100644 --- a/registry/coder/modules/filebrowser/main.tf +++ b/registry/coder/modules/filebrowser/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/goose/README.md b/registry/coder/modules/goose/README.md index a59aca765..268b1d004 100644 --- a/registry/coder/modules/goose/README.md +++ b/registry/coder/modules/goose/README.md @@ -14,7 +14,7 @@ Run the [Goose](https://block.github.io/goose/) agent in your workspace to gener ```tf module "goose" { source = "registry.coder.com/coder/goose/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id folder = "/home/coder" install_goose = true @@ -90,7 +90,7 @@ resource "coder_agent" "main" { module "goose" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/goose/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id folder = "/home/coder" install_goose = true @@ -152,7 +152,7 @@ Run Goose as a standalone app in your workspace. This will install Goose and run ```tf module "goose" { source = "registry.coder.com/coder/goose/coder" - version = "1.2.0" + version = "1.3.0" agent_id = coder_agent.example.id folder = "/home/coder" install_goose = true diff --git a/registry/coder/modules/goose/main.tf b/registry/coder/modules/goose/main.tf index 9ac816b91..a159ca7b2 100644 --- a/registry/coder/modules/goose/main.tf +++ b/registry/coder/modules/goose/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/jetbrains-gateway/README.md b/registry/coder/modules/jetbrains-gateway/README.md index 3270520d3..919e43119 100644 --- a/registry/coder/modules/jetbrains-gateway/README.md +++ b/registry/coder/modules/jetbrains-gateway/README.md @@ -18,7 +18,7 @@ Consult the [JetBrains documentation](https://www.jetbrains.com/help/idea/prereq module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.1.1" + version = "1.2.0" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["CL", "GO", "IU", "PY", "WS"] @@ -36,7 +36,7 @@ module "jetbrains_gateway" { module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.1.1" + version = "1.2.0" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["GO", "WS"] @@ -50,7 +50,7 @@ module "jetbrains_gateway" { module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.1.1" + version = "1.2.0" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["IU", "PY"] @@ -65,7 +65,7 @@ module "jetbrains_gateway" { module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.1.1" + version = "1.2.0" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["IU", "PY"] @@ -90,7 +90,7 @@ module "jetbrains_gateway" { module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.1.1" + version = "1.2.0" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["GO", "WS"] @@ -108,7 +108,7 @@ Due to the highest priority of the `ide_download_link` parameter in the `(jetbra module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.1.1" + version = "1.2.0" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["GO", "WS"] diff --git a/registry/coder/modules/jetbrains-gateway/main.tf b/registry/coder/modules/jetbrains-gateway/main.tf index 535edeef5..340fc3d4c 100644 --- a/registry/coder/modules/jetbrains-gateway/main.tf +++ b/registry/coder/modules/jetbrains-gateway/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } http = { source = "hashicorp/http" diff --git a/registry/coder/modules/jupyter-notebook/README.md b/registry/coder/modules/jupyter-notebook/README.md index d3754e21e..ab4f15cad 100644 --- a/registry/coder/modules/jupyter-notebook/README.md +++ b/registry/coder/modules/jupyter-notebook/README.md @@ -17,7 +17,7 @@ A module that adds Jupyter Notebook in your Coder template. module "jupyter-notebook" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jupyter-notebook/coder" - version = "1.0.19" + version = "1.1.0" agent_id = coder_agent.example.id } ``` diff --git a/registry/coder/modules/jupyter-notebook/main.tf b/registry/coder/modules/jupyter-notebook/main.tf index 43fea1dde..61cf25ebf 100644 --- a/registry/coder/modules/jupyter-notebook/main.tf +++ b/registry/coder/modules/jupyter-notebook/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/jupyterlab/README.md b/registry/coder/modules/jupyterlab/README.md index 8c3783106..77b5952fd 100644 --- a/registry/coder/modules/jupyterlab/README.md +++ b/registry/coder/modules/jupyterlab/README.md @@ -17,7 +17,7 @@ A module that adds JupyterLab in your Coder template. module "jupyterlab" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jupyterlab/coder" - version = "1.0.31" + version = "1.1.0" agent_id = coder_agent.example.id } ``` diff --git a/registry/coder/modules/jupyterlab/main.tf b/registry/coder/modules/jupyterlab/main.tf index 8beeeb22e..1237d980d 100644 --- a/registry/coder/modules/jupyterlab/main.tf +++ b/registry/coder/modules/jupyterlab/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/kasmvnc/README.md b/registry/coder/modules/kasmvnc/README.md index 0e6d24cb7..1d49c7b20 100644 --- a/registry/coder/modules/kasmvnc/README.md +++ b/registry/coder/modules/kasmvnc/README.md @@ -15,7 +15,7 @@ Automatically install [KasmVNC](https://kasmweb.com/kasmvnc) in a workspace, and module "kasmvnc" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/kasmvnc/coder" - version = "1.0.23" + version = "1.1.0" agent_id = coder_agent.example.id desktop_environment = "xfce" } diff --git a/registry/coder/modules/kasmvnc/main.tf b/registry/coder/modules/kasmvnc/main.tf index 7c795dbf5..f2aaebe97 100644 --- a/registry/coder/modules/kasmvnc/main.tf +++ b/registry/coder/modules/kasmvnc/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.12" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/vscode-desktop/README.md b/registry/coder/modules/vscode-desktop/README.md index 38fee3639..7fcda3d5d 100644 --- a/registry/coder/modules/vscode-desktop/README.md +++ b/registry/coder/modules/vscode-desktop/README.md @@ -17,7 +17,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder) module "vscode" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/vscode-desktop/coder" - version = "1.0.15" + version = "1.1.0" agent_id = coder_agent.example.id } ``` @@ -30,7 +30,7 @@ module "vscode" { module "vscode" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/vscode-desktop/coder" - version = "1.0.15" + version = "1.1.0" agent_id = coder_agent.example.id folder = "/home/coder/project" } diff --git a/registry/coder/modules/vscode-desktop/main.tf b/registry/coder/modules/vscode-desktop/main.tf index 8000afd77..f93d14e30 100644 --- a/registry/coder/modules/vscode-desktop/main.tf +++ b/registry/coder/modules/vscode-desktop/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.23" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/vscode-web/README.md b/registry/coder/modules/vscode-web/README.md index 77d4e43b1..750ab993b 100644 --- a/registry/coder/modules/vscode-web/README.md +++ b/registry/coder/modules/vscode-web/README.md @@ -15,7 +15,7 @@ Automatically install [Visual Studio Code Server](https://code.visualstudio.com/ module "vscode-web" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/vscode-web/coder" - version = "1.1.0" + version = "1.2.0" agent_id = coder_agent.example.id accept_license = true } @@ -31,7 +31,7 @@ module "vscode-web" { module "vscode-web" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/vscode-web/coder" - version = "1.1.0" + version = "1.2.0" agent_id = coder_agent.example.id install_prefix = "/home/coder/.vscode-web" folder = "/home/coder" @@ -45,7 +45,7 @@ module "vscode-web" { module "vscode-web" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/vscode-web/coder" - version = "1.1.0" + version = "1.2.0" agent_id = coder_agent.example.id extensions = ["github.copilot", "ms-python.python", "ms-toolsai.jupyter"] accept_license = true @@ -60,7 +60,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte module "vscode-web" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/vscode-web/coder" - version = "1.1.0" + version = "1.2.0" agent_id = coder_agent.example.id extensions = ["dracula-theme.theme-dracula"] settings = { @@ -78,7 +78,7 @@ By default, this module installs the latest. To pin a specific version, retrieve module "vscode-web" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/vscode-web/coder" - version = "1.1.0" + version = "1.2.0" agent_id = coder_agent.example.id commit_id = "e54c774e0add60467559eb0d1e229c6452cf8447" accept_license = true diff --git a/registry/coder/modules/vscode-web/main.tf b/registry/coder/modules/vscode-web/main.tf index 30518b2ae..c54ee9a84 100644 --- a/registry/coder/modules/vscode-web/main.tf +++ b/registry/coder/modules/vscode-web/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.17" + version = ">= 2.5" } } } diff --git a/registry/coder/modules/windsurf/README.md b/registry/coder/modules/windsurf/README.md index 277609dc0..517c98b3e 100644 --- a/registry/coder/modules/windsurf/README.md +++ b/registry/coder/modules/windsurf/README.md @@ -17,7 +17,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder) module "windsurf" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/windsurf/coder" - version = "1.0.0" + version = "1.1.0" agent_id = coder_agent.example.id } ``` @@ -30,7 +30,7 @@ module "windsurf" { module "windsurf" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/windsurf/coder" - version = "1.0.0" + version = "1.1.0" agent_id = coder_agent.example.id folder = "/home/coder/project" } diff --git a/registry/coder/modules/windsurf/main.tf b/registry/coder/modules/windsurf/main.tf index 9da26c8e7..2f9d02a5c 100644 --- a/registry/coder/modules/windsurf/main.tf +++ b/registry/coder/modules/windsurf/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.23" + version = ">= 2.5" } } } From 0766f8d21e9720e6d7ae35ea159c77445e459f31 Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Fri, 30 May 2025 16:29:20 +0000 Subject: [PATCH 4/6] oops --- registry/coder/modules/aider/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/registry/coder/modules/aider/README.md b/registry/coder/modules/aider/README.md index d4a08fb9d..a7fc9cced 100644 --- a/registry/coder/modules/aider/README.md +++ b/registry/coder/modules/aider/README.md @@ -14,7 +14,7 @@ Run [Aider](https://aider.chat) AI pair programming in your workspace. This modu ```tf module "aider" { source = "registry.coder.com/coder/aider/coder" - version = "1.1.0" + version = "1.0.1" agent_id = coder_agent.example.id } ``` @@ -69,7 +69,7 @@ variable "anthropic_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.1.0" + version = "1.0.1" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key } @@ -94,7 +94,7 @@ variable "openai_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.1.0" + version = "1.0.1" agent_id = coder_agent.example.id use_tmux = true ai_provider = "openai" @@ -115,7 +115,7 @@ variable "custom_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.1.0" + version = "1.0.1" agent_id = coder_agent.example.id ai_provider = "custom" custom_env_var_name = "MY_CUSTOM_API_KEY" @@ -132,7 +132,7 @@ You can extend Aider's capabilities by adding custom extensions: module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.1.0" + version = "1.0.1" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key @@ -189,7 +189,7 @@ Here's a complete example: module "coder-login" { count = data.coder_workspace.me.start_count source = "registry.coder.com/modules/coder-login/coder" - version = "1.1.05" + version = "1.0.15" agent_id = coder_agent.example.id } @@ -211,7 +211,7 @@ data "coder_parameter" "ai_prompt" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.1.0" + version = "1.0.1" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key task_prompt = data.coder_parameter.ai_prompt.value From 13db8727f50454a99591d61d77ef833261f9ba1f Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Fri, 30 May 2025 19:26:14 +0000 Subject: [PATCH 5/6] update aider version --- registry/coder/modules/aider/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/registry/coder/modules/aider/README.md b/registry/coder/modules/aider/README.md index a7fc9cced..d358dd67c 100644 --- a/registry/coder/modules/aider/README.md +++ b/registry/coder/modules/aider/README.md @@ -14,7 +14,7 @@ Run [Aider](https://aider.chat) AI pair programming in your workspace. This modu ```tf module "aider" { source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id } ``` @@ -69,7 +69,7 @@ variable "anthropic_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key } @@ -94,7 +94,7 @@ variable "openai_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id use_tmux = true ai_provider = "openai" @@ -115,7 +115,7 @@ variable "custom_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id ai_provider = "custom" custom_env_var_name = "MY_CUSTOM_API_KEY" @@ -132,7 +132,7 @@ You can extend Aider's capabilities by adding custom extensions: module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key @@ -211,7 +211,7 @@ data "coder_parameter" "ai_prompt" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.1" + version = "1.1.0" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key task_prompt = data.coder_parameter.ai_prompt.value From 5776235e2d82869c2c13b4b0c5479f7c390864d6 Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Fri, 30 May 2025 19:26:53 +0000 Subject: [PATCH 6/6] update kasmvnc version --- registry/coder/modules/kasmvnc/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder/modules/kasmvnc/README.md b/registry/coder/modules/kasmvnc/README.md index e07186747..995b03f4a 100644 --- a/registry/coder/modules/kasmvnc/README.md +++ b/registry/coder/modules/kasmvnc/README.md @@ -15,7 +15,7 @@ Automatically install [KasmVNC](https://kasmweb.com/kasmvnc) in a workspace, and module "kasmvnc" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/kasmvnc/coder" - version = "1.1.0" + version = "1.2.0" agent_id = coder_agent.example.id desktop_environment = "xfce" subdomain = true