diff --git a/examples/modules/README.md b/examples/modules/README.md index 9d095f29..da14e6a2 100644 --- a/examples/modules/README.md +++ b/examples/modules/README.md @@ -2,7 +2,6 @@ display_name: MODULE_NAME description: Describe what this module does icon: ../../../../.icons/.svg -maintainer_github: GITHUB_USERNAME verified: false tags: [helper] --- diff --git a/registry/coder-labs/templates/tasks-docker/README.md b/registry/coder-labs/templates/tasks-docker/README.md index 10e39f9d..ba6a724e 100644 --- a/registry/coder-labs/templates/tasks-docker/README.md +++ b/registry/coder-labs/templates/tasks-docker/README.md @@ -2,7 +2,6 @@ display_name: Tasks on Docker description: Run Coder Tasks on Docker with an example application icon: ../../../../.icons/tasks.svg -maintainer_github: coder-labs verified: false tags: [docker, container, ai, tasks] --- diff --git a/registry/coder/modules/agentapi/README.md b/registry/coder/modules/agentapi/README.md index 0dc97565..25534d6c 100644 --- a/registry/coder/modules/agentapi/README.md +++ b/registry/coder/modules/agentapi/README.md @@ -2,7 +2,6 @@ display_name: AgentAPI description: Building block for modules that need to run an agentapi server icon: ../../../../.icons/coder.svg -maintainer_github: coder verified: true tags: [internal] --- @@ -16,7 +15,7 @@ We do not recommend using this module directly. Instead, please consider using o ```tf module "agentapi" { source = "registry.coder.com/coder/agentapi/coder" - version = "1.0.0" + version = "1.0.1" agent_id = var.agent_id web_app_slug = local.app_slug diff --git a/registry/coder/modules/aider/README.md b/registry/coder/modules/aider/README.md index d358dd67..9f5370df 100644 --- a/registry/coder/modules/aider/README.md +++ b/registry/coder/modules/aider/README.md @@ -2,7 +2,6 @@ display_name: Aider description: Run Aider AI pair programming in your workspace icon: ../../../../.icons/aider.svg -maintainer_github: coder verified: true tags: [agent, ai, aider] --- @@ -14,7 +13,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.1.1" agent_id = coder_agent.example.id } ``` @@ -69,7 +68,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.1.1" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key } @@ -94,7 +93,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.1.1" agent_id = coder_agent.example.id use_tmux = true ai_provider = "openai" @@ -115,7 +114,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.1.1" agent_id = coder_agent.example.id ai_provider = "custom" custom_env_var_name = "MY_CUSTOM_API_KEY" @@ -132,7 +131,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.1.1" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key @@ -211,7 +210,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.1.1" 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/amazon-dcv-windows/README.md b/registry/coder/modules/amazon-dcv-windows/README.md index cd8fb394..52d5fc20 100644 --- a/registry/coder/modules/amazon-dcv-windows/README.md +++ b/registry/coder/modules/amazon-dcv-windows/README.md @@ -2,7 +2,6 @@ display_name: Amazon DCV Windows description: Amazon DCV Server and Web Client for Windows icon: ../../../../.icons/dcv.svg -maintainer_github: coder verified: true tags: [windows, amazon, dcv, web, desktop] --- @@ -19,7 +18,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.1.0" + version = "1.1.1" agent_id = resource.coder_agent.main.id } diff --git a/registry/coder/modules/amazon-q/README.md b/registry/coder/modules/amazon-q/README.md index e4fe0837..96ac73ec 100644 --- a/registry/coder/modules/amazon-q/README.md +++ b/registry/coder/modules/amazon-q/README.md @@ -2,7 +2,6 @@ display_name: Amazon Q description: Run Amazon Q in your workspace to access Amazon's AI coding assistant. icon: ../../../../.icons/amazon-q.svg -maintainer_github: coder verified: true tags: [agent, ai, aws, amazon-q] --- @@ -14,7 +13,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.1.0" + version = "1.1.1" agent_id = coder_agent.example.id # Required: see below for how to generate experiment_auth_tarball = var.amazon_q_auth_tarball @@ -82,7 +81,7 @@ module "amazon-q" { ```tf module "amazon-q" { source = "registry.coder.com/coder/amazon-q/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id experiment_auth_tarball = var.amazon_q_auth_tarball experiment_use_tmux = true @@ -94,7 +93,7 @@ module "amazon-q" { ```tf module "amazon-q" { source = "registry.coder.com/coder/amazon-q/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id experiment_auth_tarball = var.amazon_q_auth_tarball experiment_report_tasks = true @@ -106,7 +105,7 @@ module "amazon-q" { ```tf module "amazon-q" { source = "registry.coder.com/coder/amazon-q/coder" - version = "1.1.0" + version = "1.1.1" 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/aws-region/README.md b/registry/coder/modules/aws-region/README.md index 5656e1c8..c2527a30 100644 --- a/registry/coder/modules/aws-region/README.md +++ b/registry/coder/modules/aws-region/README.md @@ -2,7 +2,6 @@ display_name: AWS Region description: A parameter with human region names and icons icon: ../../../../.icons/aws.svg -maintainer_github: coder verified: true tags: [helper, parameter, regions, aws] --- @@ -18,7 +17,7 @@ Customize the preselected parameter value: module "aws-region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aws-region/coder" - version = "1.0.12" + version = "1.0.31" default = "us-east-1" } @@ -39,7 +38,7 @@ Change the display name and icon for a region using the corresponding maps: module "aws-region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aws-region/coder" - version = "1.0.12" + version = "1.0.31" default = "ap-south-1" custom_names = { @@ -66,7 +65,7 @@ Hide the Asia Pacific regions Seoul and Osaka: module "aws-region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aws-region/coder" - version = "1.0.12" + version = "1.0.31" exclude = ["ap-northeast-2", "ap-northeast-3"] } diff --git a/registry/coder/modules/azure-region/README.md b/registry/coder/modules/azure-region/README.md index 16c145a0..fdff787f 100644 --- a/registry/coder/modules/azure-region/README.md +++ b/registry/coder/modules/azure-region/README.md @@ -2,7 +2,6 @@ display_name: Azure Region description: A parameter with human region names and icons icon: ../../../../.icons/azure.svg -maintainer_github: coder verified: true tags: [helper, parameter, azure, regions] --- @@ -15,7 +14,7 @@ This module adds a parameter with all Azure regions, allowing developers to sele module "azure_region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/azure-region/coder" - version = "1.0.12" + version = "1.0.31" default = "eastus" } @@ -36,7 +35,7 @@ Change the display name and icon for a region using the corresponding maps: module "azure-region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/azure-region/coder" - version = "1.0.12" + version = "1.0.31" custom_names = { "australia" : "Go Australia!" } @@ -60,7 +59,7 @@ Hide all regions in Australia except australiacentral: module "azure-region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/azure-region/coder" - version = "1.0.12" + version = "1.0.31" exclude = [ "australia", "australiacentral2", diff --git a/registry/coder/modules/claude-code/README.md b/registry/coder/modules/claude-code/README.md index 5c4319ba..b3dfeccc 100644 --- a/registry/coder/modules/claude-code/README.md +++ b/registry/coder/modules/claude-code/README.md @@ -2,7 +2,6 @@ display_name: Claude Code description: Run Claude Code in your workspace icon: ../../../../.icons/claude.svg -maintainer_github: coder verified: true tags: [agent, claude-code, ai, tasks] --- @@ -14,7 +13,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 = "2.0.2" + version = "2.0.3" agent_id = coder_agent.example.id folder = "/home/coder" install_claude_code = true @@ -85,7 +84,7 @@ resource "coder_agent" "main" { module "claude-code" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/claude-code/coder" - version = "2.0.2" + version = "2.0.3" agent_id = coder_agent.example.id folder = "/home/coder" install_claude_code = true @@ -103,7 +102,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 = "2.0.2" + version = "2.0.3" agent_id = coder_agent.example.id folder = "/home/coder" install_claude_code = true diff --git a/registry/coder/modules/code-server/README.md b/registry/coder/modules/code-server/README.md index f994ccd4..13fb7b72 100644 --- a/registry/coder/modules/code-server/README.md +++ b/registry/coder/modules/code-server/README.md @@ -2,7 +2,6 @@ display_name: code-server description: VS Code in the browser icon: ../../../../.icons/code.svg -maintainer_github: coder verified: true tags: [ide, web, code-server] --- @@ -15,7 +14,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.3.0" + version = "1.3.1" agent_id = coder_agent.example.id } ``` @@ -30,7 +29,7 @@ module "code-server" { module "code-server" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/code-server/coder" - version = "1.3.0" + version = "1.3.1" agent_id = coder_agent.example.id install_version = "4.8.3" } @@ -44,7 +43,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.3.0" + version = "1.3.1" agent_id = coder_agent.example.id extensions = [ "dracula-theme.theme-dracula" @@ -62,7 +61,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.3.0" + version = "1.3.1" agent_id = coder_agent.example.id extensions = ["dracula-theme.theme-dracula"] settings = { @@ -79,7 +78,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.3.0" + version = "1.3.1" agent_id = coder_agent.example.id extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"] } @@ -95,7 +94,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.3.0" + version = "1.3.1" agent_id = coder_agent.example.id use_cached = true extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"] @@ -108,7 +107,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.3.0" + version = "1.3.1" agent_id = coder_agent.example.id offline = true } diff --git a/registry/coder/modules/coder-login/README.md b/registry/coder/modules/coder-login/README.md index d6d1d6d6..3d0e29f1 100644 --- a/registry/coder/modules/coder-login/README.md +++ b/registry/coder/modules/coder-login/README.md @@ -2,7 +2,6 @@ display_name: Coder Login description: Automatically logs the user into Coder on their workspace icon: ../../../../.icons/coder.svg -maintainer_github: coder verified: true tags: [helper] --- @@ -15,7 +14,7 @@ Automatically logs the user into Coder when creating their workspace. module "coder-login" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/coder-login/coder" - version = "1.0.15" + version = "1.0.31" agent_id = coder_agent.example.id } ``` diff --git a/registry/coder/modules/cursor/README.md b/registry/coder/modules/cursor/README.md index 6ebb5407..9dba52b5 100644 --- a/registry/coder/modules/cursor/README.md +++ b/registry/coder/modules/cursor/README.md @@ -2,7 +2,6 @@ display_name: Cursor IDE description: Add a one-click button to launch Cursor IDE icon: ../../../../.icons/cursor.svg -maintainer_github: coder verified: true tags: [ide, cursor, ai] --- @@ -17,7 +16,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.2.0" + version = "1.2.1" agent_id = coder_agent.example.id } ``` @@ -30,7 +29,7 @@ module "cursor" { module "cursor" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cursor/coder" - version = "1.2.0" + version = "1.2.1" agent_id = coder_agent.example.id folder = "/home/coder/project" } diff --git a/registry/coder/modules/devcontainers-cli/README.md b/registry/coder/modules/devcontainers-cli/README.md index 99a497ac..ed2a4cb1 100644 --- a/registry/coder/modules/devcontainers-cli/README.md +++ b/registry/coder/modules/devcontainers-cli/README.md @@ -3,7 +3,6 @@ display_name: devcontainers-cli description: devcontainers-cli module provides an easy way to install @devcontainers/cli into a workspace icon: ../../../../.icons/devcontainers.svg verified: true -maintainer_github: coder tags: [devcontainers] --- @@ -16,7 +15,7 @@ The devcontainers-cli module provides an easy way to install [`@devcontainers/cl ```tf module "devcontainers-cli" { source = "registry.coder.com/coder/devcontainers-cli/coder" - version = "1.0.3" + version = "1.0.31" agent_id = coder_agent.example.id } ``` diff --git a/registry/coder/modules/dotfiles/README.md b/registry/coder/modules/dotfiles/README.md index 0f55d0a8..02c62004 100644 --- a/registry/coder/modules/dotfiles/README.md +++ b/registry/coder/modules/dotfiles/README.md @@ -2,7 +2,6 @@ display_name: Dotfiles description: Allow developers to optionally bring their own dotfiles repository to customize their shell and IDE settings! icon: ../../../../.icons/dotfiles.svg -maintainer_github: coder verified: true tags: [helper, dotfiles] --- @@ -19,7 +18,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.2.0" + version = "1.2.1" agent_id = coder_agent.example.id } ``` @@ -32,7 +31,7 @@ module "dotfiles" { module "dotfiles" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.2.0" + version = "1.2.1" agent_id = coder_agent.example.id } ``` @@ -43,7 +42,7 @@ module "dotfiles" { module "dotfiles" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.2.0" + version = "1.2.1" agent_id = coder_agent.example.id user = "root" } @@ -55,14 +54,14 @@ module "dotfiles" { module "dotfiles" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/dotfiles/coder" - version = "1.2.0" + version = "1.2.1" 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.2.0" + version = "1.2.1" agent_id = coder_agent.example.id user = "root" dotfiles_uri = module.dotfiles.dotfiles_uri @@ -77,7 +76,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.2.0" + version = "1.2.1" agent_id = coder_agent.example.id default_dotfiles_uri = "https://github.com/coder/dotfiles" } diff --git a/registry/coder/modules/filebrowser/README.md b/registry/coder/modules/filebrowser/README.md index eac68eae..821768b1 100644 --- a/registry/coder/modules/filebrowser/README.md +++ b/registry/coder/modules/filebrowser/README.md @@ -2,7 +2,6 @@ display_name: File Browser description: A file browser for your workspace icon: ../../../../.icons/filebrowser.svg -maintainer_github: coder verified: true tags: [filebrowser, web] --- @@ -15,7 +14,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.1.1" + version = "1.1.2" agent_id = coder_agent.example.id } ``` @@ -30,7 +29,7 @@ module "filebrowser" { module "filebrowser" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/filebrowser/coder" - version = "1.1.1" + version = "1.1.2" agent_id = coder_agent.example.id folder = "/home/coder/project" } @@ -42,7 +41,7 @@ module "filebrowser" { module "filebrowser" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/filebrowser/coder" - version = "1.1.1" + version = "1.1.2" agent_id = coder_agent.example.id database_path = ".config/filebrowser.db" } @@ -54,7 +53,7 @@ module "filebrowser" { module "filebrowser" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/filebrowser/coder" - version = "1.1.1" + version = "1.1.2" agent_id = coder_agent.example.id agent_name = "main" subdomain = false diff --git a/registry/coder/modules/fly-region/README.md b/registry/coder/modules/fly-region/README.md index d51b3018..9beba26a 100644 --- a/registry/coder/modules/fly-region/README.md +++ b/registry/coder/modules/fly-region/README.md @@ -2,7 +2,6 @@ display_name: Fly.io Region description: A parameter with human region names and icons icon: ../../../../.icons/fly.svg -maintainer_github: coder verified: true tags: [helper, parameter, fly.io, regions] --- @@ -17,7 +16,7 @@ We can use the simplest format here, only adding a default selection as the `atl module "fly-region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/fly-region/coder" - version = "1.0.2" + version = "1.0.31" default = "atl" } ``` @@ -34,7 +33,7 @@ The regions argument can be used to display only the desired regions in the Code module "fly-region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/fly-region/coder" - version = "1.0.2" + version = "1.0.31" default = "ams" regions = ["ams", "arn", "atl"] } @@ -50,7 +49,7 @@ Set custom icons and names with their respective maps. module "fly-region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/fly-region/coder" - version = "1.0.2" + version = "1.0.31" default = "ams" custom_icons = { diff --git a/registry/coder/modules/gcp-region/README.md b/registry/coder/modules/gcp-region/README.md index 262777ed..3c2d4599 100644 --- a/registry/coder/modules/gcp-region/README.md +++ b/registry/coder/modules/gcp-region/README.md @@ -2,7 +2,6 @@ display_name: GCP Region description: Add Google Cloud Platform regions to your Coder template. icon: ../../../../.icons/gcp.svg -maintainer_github: coder verified: true tags: [gcp, regions, parameter, helper] --- @@ -15,7 +14,7 @@ This module adds Google Cloud Platform regions to your Coder template. module "gcp_region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/gcp-region/coder" - version = "1.0.12" + version = "1.0.31" regions = ["us", "europe"] } @@ -36,7 +35,7 @@ Note: setting `gpu_only = true` and using a default region without GPU support, module "gcp_region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/gcp-region/coder" - version = "1.0.12" + version = "1.0.31" default = ["us-west1-a"] regions = ["us-west1"] gpu_only = false @@ -53,7 +52,7 @@ resource "google_compute_instance" "example" { module "gcp_region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/gcp-region/coder" - version = "1.0.12" + version = "1.0.31" regions = ["europe-west"] single_zone_per_region = false } @@ -69,7 +68,7 @@ resource "google_compute_instance" "example" { module "gcp_region" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/gcp-region/coder" - version = "1.0.12" + version = "1.0.31" regions = ["us", "europe"] gpu_only = true single_zone_per_region = true diff --git a/registry/coder/modules/git-clone/README.md b/registry/coder/modules/git-clone/README.md index fc014586..c12eb590 100644 --- a/registry/coder/modules/git-clone/README.md +++ b/registry/coder/modules/git-clone/README.md @@ -2,7 +2,6 @@ display_name: Git Clone description: Clone a Git repository by URL and skip if it exists. icon: ../../../../.icons/git.svg -maintainer_github: coder verified: true tags: [git, helper] --- @@ -15,7 +14,7 @@ This module allows you to automatically clone a repository by URL and skip if it module "git-clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = "https://github.com/coder/coder" } @@ -29,7 +28,7 @@ module "git-clone" { module "git-clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = "https://github.com/coder/coder" base_dir = "~/projects/coder" @@ -44,7 +43,7 @@ To use with [Git Authentication](https://coder.com/docs/v2/latest/admin/git-prov module "git-clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = "https://github.com/coder/coder" } @@ -70,7 +69,7 @@ data "coder_parameter" "git_repo" { module "git_clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = data.coder_parameter.git_repo.value } @@ -104,7 +103,7 @@ Configuring `git-clone` for a self-hosted GitHub Enterprise Server running at `g module "git-clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = "https://github.example.com/coder/coder/tree/feat/example" git_providers = { @@ -123,7 +122,7 @@ To GitLab clone with a specific branch like `feat/example` module "git-clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = "https://gitlab.com/coder/coder/-/tree/feat/example" } @@ -135,7 +134,7 @@ Configuring `git-clone` for a self-hosted GitLab running at `gitlab.example.com` module "git-clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = "https://gitlab.example.com/coder/coder/-/tree/feat/example" git_providers = { @@ -156,7 +155,7 @@ For example, to clone the `feat/example` branch: module "git-clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = "https://github.com/coder/coder" branch_name = "feat/example" @@ -174,7 +173,7 @@ For example, this will clone into the `~/projects/coder/coder-dev` folder: module "git-clone" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-clone/coder" - version = "1.1.0" + version = "1.1.1" agent_id = coder_agent.example.id url = "https://github.com/coder/coder" folder_name = "coder-dev" diff --git a/registry/coder/modules/git-commit-signing/README.md b/registry/coder/modules/git-commit-signing/README.md index fdba4a30..de67febc 100644 --- a/registry/coder/modules/git-commit-signing/README.md +++ b/registry/coder/modules/git-commit-signing/README.md @@ -2,7 +2,6 @@ display_name: Git commit signing description: Configures Git to sign commits using your Coder SSH key icon: ../../../../.icons/git.svg -maintainer_github: coder verified: true tags: [helper, git] --- @@ -23,7 +22,7 @@ This module has a chance of conflicting with the user's dotfiles / the personali module "git-commit-signing" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-commit-signing/coder" - version = "1.0.11" + version = "1.0.31" agent_id = coder_agent.example.id } ``` diff --git a/registry/coder/modules/git-config/README.md b/registry/coder/modules/git-config/README.md index 72337c91..ba618d81 100644 --- a/registry/coder/modules/git-config/README.md +++ b/registry/coder/modules/git-config/README.md @@ -2,7 +2,6 @@ display_name: Git Config description: Stores Git configuration from Coder credentials icon: ../../../../.icons/git.svg -maintainer_github: coder verified: true tags: [helper, git] --- @@ -15,7 +14,7 @@ Runs a script that updates git credentials in the workspace to match the user's module "git-config" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-config/coder" - version = "1.0.15" + version = "1.0.31" agent_id = coder_agent.example.id } ``` @@ -30,7 +29,7 @@ TODO: Add screenshot module "git-config" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-config/coder" - version = "1.0.15" + version = "1.0.31" agent_id = coder_agent.example.id allow_email_change = true } @@ -44,7 +43,7 @@ TODO: Add screenshot module "git-config" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/git-config/coder" - version = "1.0.15" + version = "1.0.31" agent_id = coder_agent.example.id allow_username_change = false allow_email_change = false diff --git a/registry/coder/modules/github-upload-public-key/README.md b/registry/coder/modules/github-upload-public-key/README.md index d010633a..92c2c1c9 100644 --- a/registry/coder/modules/github-upload-public-key/README.md +++ b/registry/coder/modules/github-upload-public-key/README.md @@ -2,7 +2,6 @@ display_name: Github Upload Public Key description: Automates uploading Coder public key to Github so users don't have to. icon: ../../../../.icons/github.svg -maintainer_github: coder verified: true tags: [helper, git] --- @@ -15,7 +14,7 @@ Templates that utilize Github External Auth can automatically ensure that the Co module "github-upload-public-key" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/github-upload-public-key/coder" - version = "1.0.15" + version = "1.0.31" agent_id = coder_agent.example.id } ``` @@ -48,7 +47,7 @@ data "coder_external_auth" "github" { module "github-upload-public-key" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/github-upload-public-key/coder" - version = "1.0.15" + version = "1.0.31" agent_id = coder_agent.example.id external_auth_id = data.coder_external_auth.github.id } diff --git a/registry/coder/modules/goose/README.md b/registry/coder/modules/goose/README.md index 45f40b88..7d957d2f 100644 --- a/registry/coder/modules/goose/README.md +++ b/registry/coder/modules/goose/README.md @@ -2,7 +2,6 @@ display_name: Goose description: Run Goose in your workspace icon: ../../../../.icons/goose.svg -maintainer_github: coder verified: true tags: [agent, goose, ai, tasks] --- @@ -14,7 +13,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 = "2.0.0" + version = "2.0.1" agent_id = coder_agent.example.id folder = "/home/coder" install_goose = true @@ -80,7 +79,7 @@ resource "coder_agent" "main" { module "goose" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/goose/coder" - version = "2.0.0" + version = "2.0.1" agent_id = coder_agent.example.id folder = "/home/coder" install_goose = true diff --git a/registry/coder/modules/hcp-vault-secrets/README.md b/registry/coder/modules/hcp-vault-secrets/README.md index d30a95cc..cc2fe5ed 100644 --- a/registry/coder/modules/hcp-vault-secrets/README.md +++ b/registry/coder/modules/hcp-vault-secrets/README.md @@ -2,7 +2,6 @@ display_name: "HCP Vault Secrets" description: "Fetch secrets from HCP Vault" icon: ../../../../.icons/vault.svg -maintainer_github: coder partner_github: hashicorp verified: true tags: [integration, vault, hashicorp, hvs] @@ -28,7 +27,7 @@ This module lets you fetch all or selective secrets from a [HCP Vault Secrets](h ```tf module "vault" { source = "registry.coder.com/coder/hcp-vault-secrets/coder" - version = "1.0.32" + version = "1.0.33" agent_id = coder_agent.example.id app_name = "demo-app" project_id = "aaa-bbb-ccc" @@ -54,7 +53,7 @@ To fetch all secrets from the HCP Vault Secrets app, skip the `secrets` input. ```tf module "vault" { source = "registry.coder.com/coder/hcp-vault-secrets/coder" - version = "1.0.32" + version = "1.0.33" agent_id = coder_agent.example.id app_name = "demo-app" project_id = "aaa-bbb-ccc" @@ -68,7 +67,7 @@ To fetch selective secrets from the HCP Vault Secrets app, set the `secrets` inp ```tf module "vault" { source = "registry.coder.com/coder/hcp-vault-secrets/coder" - version = "1.0.32" + version = "1.0.33" agent_id = coder_agent.example.id app_name = "demo-app" project_id = "aaa-bbb-ccc" @@ -83,7 +82,7 @@ Set `client_id` and `client_secret` as module inputs. ```tf module "vault" { source = "registry.coder.com/coder/hcp-vault-secrets/coder" - version = "1.0.32" + version = "1.0.33" agent_id = coder_agent.example.id app_name = "demo-app" project_id = "aaa-bbb-ccc" diff --git a/registry/coder/modules/jetbrains-gateway/README.md b/registry/coder/modules/jetbrains-gateway/README.md index 21721341..7caa6dad 100644 --- a/registry/coder/modules/jetbrains-gateway/README.md +++ b/registry/coder/modules/jetbrains-gateway/README.md @@ -2,7 +2,6 @@ display_name: JetBrains Gateway description: Add a one-click button to launch JetBrains Gateway IDEs in the dashboard. icon: ../../../../.icons/gateway.svg -maintainer_github: coder verified: true tags: [ide, jetbrains, parameter, gateway] --- @@ -18,7 +17,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.2.1" + version = "1.2.2" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["CL", "GO", "IU", "PY", "WS"] @@ -36,7 +35,7 @@ module "jetbrains_gateway" { module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.2.1" + version = "1.2.2" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["GO", "WS"] @@ -50,7 +49,7 @@ module "jetbrains_gateway" { module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.2.1" + version = "1.2.2" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["IU", "PY"] @@ -65,7 +64,7 @@ module "jetbrains_gateway" { module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.2.1" + version = "1.2.2" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["IU", "PY"] @@ -90,7 +89,7 @@ module "jetbrains_gateway" { module "jetbrains_gateway" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains-gateway/coder" - version = "1.2.1" + version = "1.2.2" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["GO", "WS"] @@ -108,7 +107,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.2.1" + version = "1.2.2" agent_id = coder_agent.example.id folder = "/home/coder/example" jetbrains_ides = ["GO", "WS"] diff --git a/registry/coder/modules/jetbrains/README.md b/registry/coder/modules/jetbrains/README.md index f14e9555..014fe098 100644 --- a/registry/coder/modules/jetbrains/README.md +++ b/registry/coder/modules/jetbrains/README.md @@ -2,7 +2,6 @@ display_name: JetBrains Toolbox description: Add JetBrains IDE integrations to your Coder workspaces with configurable options. icon: ../../../../.icons/jetbrains.svg -maintainer_github: coder verified: true tags: [ide, jetbrains, parameter] --- @@ -15,7 +14,7 @@ This module adds JetBrains IDE buttons to launch IDEs directly from the dashboar module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id folder = "/home/coder/project" } @@ -40,7 +39,7 @@ When `default` contains IDE codes, those IDEs are created directly without user module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id folder = "/home/coder/project" default = ["PY", "IU"] # Pre-configure GoLand and IntelliJ IDEA @@ -53,7 +52,7 @@ module "jetbrains" { module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id folder = "/home/coder/project" # Show parameter with limited options @@ -67,7 +66,7 @@ module "jetbrains" { module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id folder = "/home/coder/project" default = ["IU", "PY"] @@ -82,7 +81,7 @@ module "jetbrains" { module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id folder = "/workspace/project" @@ -108,7 +107,7 @@ module "jetbrains" { module "jetbrains_pycharm" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id folder = "/workspace/project" diff --git a/registry/coder/modules/jfrog-oauth/README.md b/registry/coder/modules/jfrog-oauth/README.md index a1b9d295..2c7fd037 100644 --- a/registry/coder/modules/jfrog-oauth/README.md +++ b/registry/coder/modules/jfrog-oauth/README.md @@ -2,7 +2,6 @@ display_name: JFrog (OAuth) description: Install the JF CLI and authenticate with Artifactory using OAuth. icon: ../../../../.icons/jfrog.svg -maintainer_github: coder partner_github: jfrog verified: true tags: [integration, jfrog, helper] @@ -18,7 +17,7 @@ Install the JF CLI and authenticate package managers with Artifactory using OAut module "jfrog" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jfrog-oauth/coder" - version = "1.0.19" + version = "1.0.31" agent_id = coder_agent.example.id jfrog_url = "https://example.jfrog.io" username_field = "username" # If you are using GitHub to login to both Coder and Artifactory, use username_field = "username" @@ -47,7 +46,7 @@ Configure the Python pip package manager to fetch packages from Artifactory whil module "jfrog" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jfrog-oauth/coder" - version = "1.0.19" + version = "1.0.31" agent_id = coder_agent.example.id jfrog_url = "https://example.jfrog.io" username_field = "email" @@ -76,7 +75,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio module "jfrog" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jfrog-oauth/coder" - version = "1.0.19" + version = "1.0.31" agent_id = coder_agent.example.id jfrog_url = "https://example.jfrog.io" username_field = "username" # If you are using GitHub to login to both Coder and Artifactory, use username_field = "username" diff --git a/registry/coder/modules/jfrog-token/README.md b/registry/coder/modules/jfrog-token/README.md index 26d98e61..0f985ce5 100644 --- a/registry/coder/modules/jfrog-token/README.md +++ b/registry/coder/modules/jfrog-token/README.md @@ -2,7 +2,6 @@ display_name: JFrog (Token) description: Install the JF CLI and authenticate with Artifactory using Artifactory terraform provider. icon: ../../../../.icons/jfrog.svg -maintainer_github: coder partner_github: jfrog verified: true tags: [integration, jfrog] @@ -15,7 +14,7 @@ Install the JF CLI and authenticate package managers with Artifactory using Arti ```tf module "jfrog" { source = "registry.coder.com/coder/jfrog-token/coder" - version = "1.0.30" + version = "1.0.31" agent_id = coder_agent.example.id jfrog_url = "https://XXXX.jfrog.io" artifactory_access_token = var.artifactory_access_token @@ -42,7 +41,7 @@ For detailed instructions, please see this [guide](https://coder.com/docs/v2/lat ```tf module "jfrog" { source = "registry.coder.com/coder/jfrog-token/coder" - version = "1.0.30" + version = "1.0.31" agent_id = coder_agent.example.id jfrog_url = "https://YYYY.jfrog.io" artifactory_access_token = var.artifactory_access_token # An admin access token @@ -75,7 +74,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio ```tf module "jfrog" { source = "registry.coder.com/coder/jfrog-token/coder" - version = "1.0.30" + version = "1.0.31" agent_id = coder_agent.example.id jfrog_url = "https://XXXX.jfrog.io" artifactory_access_token = var.artifactory_access_token @@ -95,7 +94,7 @@ data "coder_workspace" "me" {} module "jfrog" { source = "registry.coder.com/coder/jfrog-token/coder" - version = "1.0.30" + version = "1.0.31" agent_id = coder_agent.example.id jfrog_url = "https://XXXX.jfrog.io" artifactory_access_token = var.artifactory_access_token diff --git a/registry/coder/modules/jupyter-notebook/README.md b/registry/coder/modules/jupyter-notebook/README.md index ab4f15ca..9c0cd5e2 100644 --- a/registry/coder/modules/jupyter-notebook/README.md +++ b/registry/coder/modules/jupyter-notebook/README.md @@ -2,7 +2,6 @@ display_name: Jupyter Notebook description: A module that adds Jupyter Notebook in your Coder template. icon: ../../../../.icons/jupyter.svg -maintainer_github: coder verified: true tags: [jupyter, ide, web] --- @@ -17,7 +16,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.1.0" + version = "1.1.1" agent_id = coder_agent.example.id } ``` diff --git a/registry/coder/modules/jupyterlab/README.md b/registry/coder/modules/jupyterlab/README.md index 77b5952f..ed7400dc 100644 --- a/registry/coder/modules/jupyterlab/README.md +++ b/registry/coder/modules/jupyterlab/README.md @@ -2,7 +2,6 @@ display_name: JupyterLab description: A module that adds JupyterLab in your Coder template. icon: ../../../../.icons/jupyter.svg -maintainer_github: coder verified: true tags: [jupyter, ide, web] --- @@ -17,7 +16,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.1.0" + version = "1.1.1" agent_id = coder_agent.example.id } ``` diff --git a/registry/coder/modules/kasmvnc/README.md b/registry/coder/modules/kasmvnc/README.md index 995b03f4..1f65aa29 100644 --- a/registry/coder/modules/kasmvnc/README.md +++ b/registry/coder/modules/kasmvnc/README.md @@ -2,7 +2,6 @@ display_name: KasmVNC description: A modern open source VNC server icon: ../../../../.icons/kasmvnc.svg -maintainer_github: coder verified: true tags: [vnc, desktop, kasmvnc] --- @@ -15,7 +14,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.2.0" + version = "1.2.1" agent_id = coder_agent.example.id desktop_environment = "xfce" subdomain = true diff --git a/registry/coder/modules/local-windows-rdp/README.md b/registry/coder/modules/local-windows-rdp/README.md index 838798f2..ad445dba 100644 --- a/registry/coder/modules/local-windows-rdp/README.md +++ b/registry/coder/modules/local-windows-rdp/README.md @@ -2,7 +2,6 @@ display_name: RDP Desktop description: Enable RDP on Windows and add a one-click Coder Desktop button for seamless access icon: ../../../../.icons/rdp.svg -maintainer_github: coder verified: true supported_os: [windows] tags: [rdp, windows, desktop, local] @@ -25,7 +24,7 @@ This module enables Remote Desktop Protocol (RDP) on Windows workspaces and adds module "rdp_desktop" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/local-windows-rdp/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.main.id agent_name = coder_agent.main.name } @@ -58,7 +57,7 @@ Uses default credentials (Username: `Administrator`, Password: `coderRDP!`): module "rdp_desktop" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/local-windows-rdp/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.main.id agent_name = coder_agent.main.name } @@ -72,7 +71,7 @@ Specify a custom display name for the `coder_app` button: module "rdp_desktop" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/local-windows-rdp/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.windows.id agent_name = "windows" display_name = "Windows Desktop" diff --git a/registry/coder/modules/personalize/README.md b/registry/coder/modules/personalize/README.md index d6bff9ae..2e70eccb 100644 --- a/registry/coder/modules/personalize/README.md +++ b/registry/coder/modules/personalize/README.md @@ -2,7 +2,6 @@ display_name: Personalize description: Allow developers to customize their workspace on start icon: ../../../../.icons/personalize.svg -maintainer_github: coder verified: true tags: [helper, personalize] --- @@ -15,7 +14,7 @@ Run a script on workspace start that allows developers to run custom commands to module "personalize" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/personalize/coder" - version = "1.0.2" + version = "1.0.31" agent_id = coder_agent.example.id } ``` diff --git a/registry/coder/modules/slackme/README.md b/registry/coder/modules/slackme/README.md index ab416760..999ab71f 100644 --- a/registry/coder/modules/slackme/README.md +++ b/registry/coder/modules/slackme/README.md @@ -2,7 +2,6 @@ display_name: Slack Me description: Send a Slack message when a command finishes inside a workspace! icon: ../../../../.icons/slack.svg -maintainer_github: coder verified: true tags: [helper, slack] --- @@ -15,7 +14,7 @@ Add the `slackme` command to your workspace that DMs you on Slack when your comm module "slackme" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/slackme/coder" - version = "1.0.2" + version = "1.0.31" agent_id = coder_agent.example.id auth_provider_id = "slack" } @@ -75,7 +74,7 @@ slackme npm run long-build module "slackme" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/slackme/coder" - version = "1.0.2" + version = "1.0.31" agent_id = coder_agent.example.id auth_provider_id = "slack" slack_message = <