chore: update all source URLs for modules to reflect new namespace format (#89)

## Changes made
- Updated all `source` properties in Terraform import snippets to use
the new namespaced Terraform protocol URLs

## Notes
- Probably need to wait until the latest version of the Registry website
is pushed to production before we merge this in, just to be on the safe
side
- I replaced all the paths via a regex, and then double-checked all the
files modified to make sure there weren't any false positives
This commit is contained in:
Michael Smith 2025-05-13 17:53:24 -04:00 committed by GitHub
parent 31b8312877
commit 84ce4ea325
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
41 changed files with 136 additions and 129 deletions

View File

@ -227,7 +227,7 @@ In addition to the general criteria, all README files must have the following:
```tf ```tf
module "cursor" { module "cursor" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/cursor/coder" source = "registry.coder.com/coder/cursor/coder"
version = "1.0.19" version = "1.0.19"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }

View File

@ -37,7 +37,7 @@ In both cases, the main README contains a Terraform snippet for integrating the
```tf ```tf
module "cursor" { module "cursor" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/cursor/coder" source = "registry.coder.com/coder/cursor/coder"
version = "1.0.19" version = "1.0.19"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }

View File

@ -4,7 +4,7 @@ Run the [Goose](https://block.github.io/goose/) agent in your workspace to gener
```tf ```tf
module "goose" { module "goose" {
source = "registry.coder.com/modules/goose/coder" source = "registry.coder.com/coder/goose/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"
@ -38,7 +38,7 @@ Your workspace must have `screen` installed to use this.
```tf ```tf
module "coder-login" { module "coder-login" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/coder-login/coder" source = "registry.coder.com/coder/coder-login/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -80,7 +80,7 @@ resource "coder_agent" "main" {
module "goose" { module "goose" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/goose/coder" source = "registry.coder.com/coder/goose/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"
@ -108,7 +108,7 @@ Run Goose as a standalone app in your workspace. This will install Goose and run
```tf ```tf
module "goose" { module "goose" {
source = "registry.coder.com/modules/goose/coder" source = "registry.coder.com/coder/goose/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"

View File

@ -14,7 +14,7 @@ tags: [helper]
```tf ```tf
module "MODULE_NAME" { module "MODULE_NAME" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/MODULE_NAME/coder" source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
version = "1.0.2" version = "1.0.2"
} }
``` ```
@ -30,7 +30,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
```tf ```tf
module "MODULE_NAME" { module "MODULE_NAME" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/MODULE_NAME/coder" source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
version = "1.0.2" version = "1.0.2"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
extensions = [ extensions = [
@ -48,7 +48,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
```tf ```tf
module "MODULE_NAME" { module "MODULE_NAME" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/MODULE_NAME/coder" source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
version = "1.0.2" version = "1.0.2"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
extensions = ["dracula-theme.theme-dracula"] extensions = ["dracula-theme.theme-dracula"]
@ -64,7 +64,7 @@ Run code-server in the background, don't fetch it from GitHub:
```tf ```tf
module "MODULE_NAME" { module "MODULE_NAME" {
source = "registry.coder.com/modules/MODULE_NAME/coder" source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
version = "1.0.2" version = "1.0.2"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
offline = true offline = true

View File

@ -18,7 +18,7 @@ Enable DCV Server and Web Client on Windows workspaces.
```tf ```tf
module "dcv" { module "dcv" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/amazon-dcv-windows/coder" source = "registry.coder.com/coder/amazon-dcv-windows/coder"
version = "1.0.24" version = "1.0.24"
agent_id = resource.coder_agent.main.id agent_id = resource.coder_agent.main.id
} }

View File

@ -17,7 +17,7 @@ Customize the preselected parameter value:
```tf ```tf
module "aws-region" { module "aws-region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/aws-region/coder" source = "registry.coder.com/coder/aws-region/coder"
version = "1.0.12" version = "1.0.12"
default = "us-east-1" default = "us-east-1"
} }
@ -38,7 +38,7 @@ Change the display name and icon for a region using the corresponding maps:
```tf ```tf
module "aws-region" { module "aws-region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/aws-region/coder" source = "registry.coder.com/coder/aws-region/coder"
version = "1.0.12" version = "1.0.12"
default = "ap-south-1" default = "ap-south-1"
@ -65,7 +65,7 @@ Hide the Asia Pacific regions Seoul and Osaka:
```tf ```tf
module "aws-region" { module "aws-region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/aws-region/coder" source = "registry.coder.com/coder/aws-region/coder"
version = "1.0.12" version = "1.0.12"
exclude = ["ap-northeast-2", "ap-northeast-3"] exclude = ["ap-northeast-2", "ap-northeast-3"]
} }

View File

@ -14,7 +14,7 @@ This module adds a parameter with all Azure regions, allowing developers to sele
```tf ```tf
module "azure_region" { module "azure_region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/azure-region/coder" source = "registry.coder.com/coder/azure-region/coder"
version = "1.0.12" version = "1.0.12"
default = "eastus" default = "eastus"
} }
@ -35,7 +35,7 @@ Change the display name and icon for a region using the corresponding maps:
```tf ```tf
module "azure-region" { module "azure-region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/azure-region/coder" source = "registry.coder.com/coder/azure-region/coder"
version = "1.0.12" version = "1.0.12"
custom_names = { custom_names = {
"australia" : "Go Australia!" "australia" : "Go Australia!"
@ -59,7 +59,7 @@ Hide all regions in Australia except australiacentral:
```tf ```tf
module "azure-region" { module "azure-region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/azure-region/coder" source = "registry.coder.com/coder/azure-region/coder"
version = "1.0.12" version = "1.0.12"
exclude = [ exclude = [
"australia", "australia",

View File

@ -13,7 +13,7 @@ Run the [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude
```tf ```tf
module "claude-code" { module "claude-code" {
source = "registry.coder.com/modules/claude-code/coder" source = "registry.coder.com/coder/claude-code/coder"
version = "1.2.1" version = "1.2.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"
@ -54,7 +54,7 @@ variable "anthropic_api_key" {
module "coder-login" { module "coder-login" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/coder-login/coder" source = "registry.coder.com/coder/coder-login/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -82,7 +82,7 @@ resource "coder_agent" "main" {
module "claude-code" { module "claude-code" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/claude-code/coder" source = "registry.coder.com/coder/claude-code/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"
@ -101,7 +101,7 @@ Run Claude Code as a standalone app in your workspace. This will install Claude
```tf ```tf
module "claude-code" { module "claude-code" {
source = "registry.coder.com/modules/claude-code/coder" source = "registry.coder.com/coder/claude-code/coder"
version = "1.2.1" version = "1.2.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"

View File

@ -14,7 +14,7 @@ Automatically install [code-server](https://github.com/coder/code-server) in a w
```tf ```tf
module "code-server" { module "code-server" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder" source = "registry.coder.com/coder/code-server/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -29,7 +29,7 @@ module "code-server" {
```tf ```tf
module "code-server" { module "code-server" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder" source = "registry.coder.com/coder/code-server/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
install_version = "4.8.3" install_version = "4.8.3"
@ -43,7 +43,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
```tf ```tf
module "code-server" { module "code-server" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder" source = "registry.coder.com/coder/code-server/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
extensions = [ extensions = [
@ -61,7 +61,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
```tf ```tf
module "code-server" { module "code-server" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder" source = "registry.coder.com/coder/code-server/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
extensions = ["dracula-theme.theme-dracula"] extensions = ["dracula-theme.theme-dracula"]
@ -78,7 +78,7 @@ Just run code-server in the background, don't fetch it from GitHub:
```tf ```tf
module "code-server" { module "code-server" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder" source = "registry.coder.com/coder/code-server/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"] extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"]
@ -94,7 +94,7 @@ Run an existing copy of code-server if found, otherwise download from GitHub:
```tf ```tf
module "code-server" { module "code-server" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder" source = "registry.coder.com/coder/code-server/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
use_cached = true use_cached = true
@ -107,7 +107,7 @@ Just run code-server in the background, don't fetch it from GitHub:
```tf ```tf
module "code-server" { module "code-server" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder" source = "registry.coder.com/coder/code-server/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
offline = true offline = true

View File

@ -14,7 +14,7 @@ Automatically logs the user into Coder when creating their workspace.
```tf ```tf
module "coder-login" { module "coder-login" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/coder-login/coder" source = "registry.coder.com/coder/coder-login/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }

View File

@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
```tf ```tf
module "cursor" { module "cursor" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/cursor/coder" source = "registry.coder.com/coder/cursor/coder"
version = "1.0.19" version = "1.0.19"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -29,7 +29,7 @@ module "cursor" {
```tf ```tf
module "cursor" { module "cursor" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/cursor/coder" source = "registry.coder.com/coder/cursor/coder"
version = "1.0.19" version = "1.0.19"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/project" folder = "/home/coder/project"

View File

@ -15,7 +15,7 @@ The devcontainers-cli module provides an easy way to install [`@devcontainers/cl
```tf ```tf
module "devcontainers-cli" { module "devcontainers-cli" {
source = "registry.coder.com/modules/devcontainers-cli/coder" source = "registry.coder.com/coder/devcontainers-cli/coder"
version = "1.0.3" version = "1.0.3"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }

View File

@ -18,7 +18,7 @@ Under the hood, this module uses the [coder dotfiles](https://coder.com/docs/v2/
```tf ```tf
module "dotfiles" { module "dotfiles" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/dotfiles/coder" source = "registry.coder.com/coder/dotfiles/coder"
version = "1.0.29" version = "1.0.29"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -31,7 +31,7 @@ module "dotfiles" {
```tf ```tf
module "dotfiles" { module "dotfiles" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/dotfiles/coder" source = "registry.coder.com/coder/dotfiles/coder"
version = "1.0.29" version = "1.0.29"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -42,7 +42,7 @@ module "dotfiles" {
```tf ```tf
module "dotfiles" { module "dotfiles" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/dotfiles/coder" source = "registry.coder.com/coder/dotfiles/coder"
version = "1.0.29" version = "1.0.29"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
user = "root" user = "root"
@ -54,14 +54,14 @@ module "dotfiles" {
```tf ```tf
module "dotfiles" { module "dotfiles" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/dotfiles/coder" source = "registry.coder.com/coder/dotfiles/coder"
version = "1.0.29" version = "1.0.29"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
module "dotfiles-root" { module "dotfiles-root" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/dotfiles/coder" source = "registry.coder.com/coder/dotfiles/coder"
version = "1.0.29" version = "1.0.29"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
user = "root" user = "root"
@ -76,7 +76,7 @@ You can set a default dotfiles repository for all users by setting the `default_
```tf ```tf
module "dotfiles" { module "dotfiles" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/dotfiles/coder" source = "registry.coder.com/coder/dotfiles/coder"
version = "1.0.29" version = "1.0.29"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
default_dotfiles_uri = "https://github.com/coder/dotfiles" default_dotfiles_uri = "https://github.com/coder/dotfiles"

View File

@ -14,7 +14,7 @@ A file browser for your workspace.
```tf ```tf
module "filebrowser" { module "filebrowser" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/filebrowser/coder" source = "registry.coder.com/coder/filebrowser/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -29,7 +29,7 @@ module "filebrowser" {
```tf ```tf
module "filebrowser" { module "filebrowser" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/filebrowser/coder" source = "registry.coder.com/coder/filebrowser/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/project" folder = "/home/coder/project"
@ -41,7 +41,7 @@ module "filebrowser" {
```tf ```tf
module "filebrowser" { module "filebrowser" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/filebrowser/coder" source = "registry.coder.com/coder/filebrowser/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
database_path = ".config/filebrowser.db" database_path = ".config/filebrowser.db"
@ -53,7 +53,7 @@ module "filebrowser" {
```tf ```tf
module "filebrowser" { module "filebrowser" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/filebrowser/coder" source = "registry.coder.com/coder/filebrowser/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
agent_name = "main" agent_name = "main"

View File

@ -16,7 +16,7 @@ We can use the simplest format here, only adding a default selection as the `atl
```tf ```tf
module "fly-region" { module "fly-region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/fly-region/coder" source = "registry.coder.com/coder/fly-region/coder"
version = "1.0.2" version = "1.0.2"
default = "atl" default = "atl"
} }
@ -33,7 +33,7 @@ The regions argument can be used to display only the desired regions in the Code
```tf ```tf
module "fly-region" { module "fly-region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/fly-region/coder" source = "registry.coder.com/coder/fly-region/coder"
version = "1.0.2" version = "1.0.2"
default = "ams" default = "ams"
regions = ["ams", "arn", "atl"] regions = ["ams", "arn", "atl"]
@ -49,7 +49,7 @@ Set custom icons and names with their respective maps.
```tf ```tf
module "fly-region" { module "fly-region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/fly-region/coder" source = "registry.coder.com/coder/fly-region/coder"
version = "1.0.2" version = "1.0.2"
default = "ams" default = "ams"

View File

@ -14,7 +14,7 @@ This module adds Google Cloud Platform regions to your Coder template.
```tf ```tf
module "gcp_region" { module "gcp_region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/gcp-region/coder" source = "registry.coder.com/coder/gcp-region/coder"
version = "1.0.12" version = "1.0.12"
regions = ["us", "europe"] regions = ["us", "europe"]
} }
@ -35,7 +35,7 @@ Note: setting `gpu_only = true` and using a default region without GPU support,
```tf ```tf
module "gcp_region" { module "gcp_region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/gcp-region/coder" source = "registry.coder.com/coder/gcp-region/coder"
version = "1.0.12" version = "1.0.12"
default = ["us-west1-a"] default = ["us-west1-a"]
regions = ["us-west1"] regions = ["us-west1"]
@ -52,7 +52,7 @@ resource "google_compute_instance" "example" {
```tf ```tf
module "gcp_region" { module "gcp_region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/gcp-region/coder" source = "registry.coder.com/coder/gcp-region/coder"
version = "1.0.12" version = "1.0.12"
regions = ["europe-west"] regions = ["europe-west"]
single_zone_per_region = false single_zone_per_region = false
@ -68,7 +68,7 @@ resource "google_compute_instance" "example" {
```tf ```tf
module "gcp_region" { module "gcp_region" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/gcp-region/coder" source = "registry.coder.com/coder/gcp-region/coder"
version = "1.0.12" version = "1.0.12"
regions = ["us", "europe"] regions = ["us", "europe"]
gpu_only = true gpu_only = true

View File

@ -14,7 +14,7 @@ This module allows you to automatically clone a repository by URL and skip if it
```tf ```tf
module "git-clone" { module "git-clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = "https://github.com/coder/coder" url = "https://github.com/coder/coder"
@ -28,7 +28,7 @@ module "git-clone" {
```tf ```tf
module "git-clone" { module "git-clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = "https://github.com/coder/coder" url = "https://github.com/coder/coder"
@ -43,7 +43,7 @@ To use with [Git Authentication](https://coder.com/docs/v2/latest/admin/git-prov
```tf ```tf
module "git-clone" { module "git-clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = "https://github.com/coder/coder" url = "https://github.com/coder/coder"
@ -69,7 +69,7 @@ data "coder_parameter" "git_repo" {
# Clone the repository for branch `feat/example` # Clone the repository for branch `feat/example`
module "git_clone" { module "git_clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = data.coder_parameter.git_repo.value url = data.coder_parameter.git_repo.value
@ -78,7 +78,7 @@ module "git_clone" {
# Create a code-server instance for the cloned repository # Create a code-server instance for the cloned repository
module "code-server" { module "code-server" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/code-server/coder" source = "registry.coder.com/coder/code-server/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
order = 1 order = 1
@ -103,7 +103,7 @@ Configuring `git-clone` for a self-hosted GitHub Enterprise Server running at `g
```tf ```tf
module "git-clone" { module "git-clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = "https://github.example.com/coder/coder/tree/feat/example" url = "https://github.example.com/coder/coder/tree/feat/example"
@ -122,7 +122,7 @@ To GitLab clone with a specific branch like `feat/example`
```tf ```tf
module "git-clone" { module "git-clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = "https://gitlab.com/coder/coder/-/tree/feat/example" url = "https://gitlab.com/coder/coder/-/tree/feat/example"
@ -134,7 +134,7 @@ Configuring `git-clone` for a self-hosted GitLab running at `gitlab.example.com`
```tf ```tf
module "git-clone" { module "git-clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = "https://gitlab.example.com/coder/coder/-/tree/feat/example" url = "https://gitlab.example.com/coder/coder/-/tree/feat/example"
@ -155,7 +155,7 @@ For example, to clone the `feat/example` branch:
```tf ```tf
module "git-clone" { module "git-clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = "https://github.com/coder/coder" url = "https://github.com/coder/coder"
@ -172,7 +172,7 @@ For example, this will clone into the `~/projects/coder/coder-dev` folder:
```tf ```tf
module "git-clone" { module "git-clone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-clone/coder" source = "registry.coder.com/coder/git-clone/coder"
version = "1.0.18" version = "1.0.18"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
url = "https://github.com/coder/coder" url = "https://github.com/coder/coder"

View File

@ -22,7 +22,7 @@ This module has a chance of conflicting with the user's dotfiles / the personali
```tf ```tf
module "git-commit-signing" { module "git-commit-signing" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-commit-signing/coder" source = "registry.coder.com/coder/git-commit-signing/coder"
version = "1.0.11" version = "1.0.11"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }

View File

@ -14,7 +14,7 @@ Runs a script that updates git credentials in the workspace to match the user's
```tf ```tf
module "git-config" { module "git-config" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-config/coder" source = "registry.coder.com/coder/git-config/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -29,7 +29,7 @@ TODO: Add screenshot
```tf ```tf
module "git-config" { module "git-config" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-config/coder" source = "registry.coder.com/coder/git-config/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
allow_email_change = true allow_email_change = true
@ -43,7 +43,7 @@ TODO: Add screenshot
```tf ```tf
module "git-config" { module "git-config" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/git-config/coder" source = "registry.coder.com/coder/git-config/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
allow_username_change = false allow_username_change = false

View File

@ -14,7 +14,7 @@ Templates that utilize Github External Auth can automatically ensure that the Co
```tf ```tf
module "github-upload-public-key" { module "github-upload-public-key" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/github-upload-public-key/coder" source = "registry.coder.com/coder/github-upload-public-key/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -47,7 +47,7 @@ data "coder_external_auth" "github" {
module "github-upload-public-key" { module "github-upload-public-key" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/github-upload-public-key/coder" source = "registry.coder.com/coder/github-upload-public-key/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
external_auth_id = data.coder_external_auth.github.id external_auth_id = data.coder_external_auth.github.id

View File

@ -13,7 +13,7 @@ Run the [Goose](https://block.github.io/goose/) agent in your workspace to gener
```tf ```tf
module "goose" { module "goose" {
source = "registry.coder.com/modules/goose/coder" source = "registry.coder.com/coder/goose/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"
@ -47,7 +47,7 @@ Your workspace must have `screen` installed to use this.
```tf ```tf
module "coder-login" { module "coder-login" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/coder-login/coder" source = "registry.coder.com/coder/coder-login/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -89,7 +89,7 @@ resource "coder_agent" "main" {
module "goose" { module "goose" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/goose/coder" source = "registry.coder.com/coder/goose/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"
@ -147,7 +147,7 @@ Run Goose as a standalone app in your workspace. This will install Goose and run
```tf ```tf
module "goose" { module "goose" {
source = "registry.coder.com/modules/goose/coder" source = "registry.coder.com/coder/goose/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder" folder = "/home/coder"

View File

@ -14,7 +14,7 @@ This module lets you fetch all or selective secrets from a [HCP Vault Secrets](h
```tf ```tf
module "vault" { module "vault" {
source = "registry.coder.com/modules/hcp-vault-secrets/coder" source = "registry.coder.com/coder/hcp-vault-secrets/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
app_name = "demo-app" app_name = "demo-app"
@ -40,7 +40,7 @@ To fetch all secrets from the HCP Vault Secrets app, skip the `secrets` input.
```tf ```tf
module "vault" { module "vault" {
source = "registry.coder.com/modules/hcp-vault-secrets/coder" source = "registry.coder.com/coder/hcp-vault-secrets/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
app_name = "demo-app" app_name = "demo-app"
@ -54,7 +54,7 @@ To fetch selective secrets from the HCP Vault Secrets app, set the `secrets` inp
```tf ```tf
module "vault" { module "vault" {
source = "registry.coder.com/modules/hcp-vault-secrets/coder" source = "registry.coder.com/coder/hcp-vault-secrets/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
app_name = "demo-app" app_name = "demo-app"
@ -69,7 +69,7 @@ Set `client_id` and `client_secret` as module inputs.
```tf ```tf
module "vault" { module "vault" {
source = "registry.coder.com/modules/hcp-vault-secrets/coder" source = "registry.coder.com/coder/hcp-vault-secrets/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
app_name = "demo-app" app_name = "demo-app"

View File

@ -17,7 +17,7 @@ Consult the [JetBrains documentation](https://www.jetbrains.com/help/idea/prereq
```tf ```tf
module "jetbrains_gateway" { module "jetbrains_gateway" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jetbrains-gateway/coder" source = "registry.coder.com/coder/jetbrains-gateway/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/example" folder = "/home/coder/example"
@ -35,7 +35,7 @@ module "jetbrains_gateway" {
```tf ```tf
module "jetbrains_gateway" { module "jetbrains_gateway" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jetbrains-gateway/coder" source = "registry.coder.com/coder/jetbrains-gateway/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/example" folder = "/home/coder/example"
@ -49,7 +49,7 @@ module "jetbrains_gateway" {
```tf ```tf
module "jetbrains_gateway" { module "jetbrains_gateway" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jetbrains-gateway/coder" source = "registry.coder.com/coder/jetbrains-gateway/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/example" folder = "/home/coder/example"
@ -64,7 +64,7 @@ module "jetbrains_gateway" {
```tf ```tf
module "jetbrains_gateway" { module "jetbrains_gateway" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jetbrains-gateway/coder" source = "registry.coder.com/coder/jetbrains-gateway/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/example" folder = "/home/coder/example"
@ -89,7 +89,7 @@ module "jetbrains_gateway" {
```tf ```tf
module "jetbrains_gateway" { module "jetbrains_gateway" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jetbrains-gateway/coder" source = "registry.coder.com/coder/jetbrains-gateway/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/example" folder = "/home/coder/example"
@ -107,7 +107,7 @@ Due to the highest priority of the `ide_download_link` parameter in the `(jetbra
```tf ```tf
module "jetbrains_gateway" { module "jetbrains_gateway" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jetbrains-gateway/coder" source = "registry.coder.com/coder/jetbrains-gateway/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/example" folder = "/home/coder/example"

View File

@ -17,7 +17,7 @@ Install the JF CLI and authenticate package managers with Artifactory using OAut
```tf ```tf
module "jfrog" { module "jfrog" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jfrog-oauth/coder" source = "registry.coder.com/coder/jfrog-oauth/coder"
version = "1.0.19" version = "1.0.19"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
jfrog_url = "https://example.jfrog.io" jfrog_url = "https://example.jfrog.io"
@ -46,7 +46,7 @@ Configure the Python pip package manager to fetch packages from Artifactory whil
```tf ```tf
module "jfrog" { module "jfrog" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jfrog-oauth/coder" source = "registry.coder.com/coder/jfrog-oauth/coder"
version = "1.0.19" version = "1.0.19"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
jfrog_url = "https://example.jfrog.io" jfrog_url = "https://example.jfrog.io"
@ -75,7 +75,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio
```tf ```tf
module "jfrog" { module "jfrog" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jfrog-oauth/coder" source = "registry.coder.com/coder/jfrog-oauth/coder"
version = "1.0.19" version = "1.0.19"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
jfrog_url = "https://example.jfrog.io" jfrog_url = "https://example.jfrog.io"

View File

@ -14,7 +14,7 @@ Install the JF CLI and authenticate package managers with Artifactory using Arti
```tf ```tf
module "jfrog" { module "jfrog" {
source = "registry.coder.com/modules/jfrog-token/coder" source = "registry.coder.com/coder/jfrog-token/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
jfrog_url = "https://XXXX.jfrog.io" jfrog_url = "https://XXXX.jfrog.io"
@ -41,7 +41,7 @@ For detailed instructions, please see this [guide](https://coder.com/docs/v2/lat
```tf ```tf
module "jfrog" { module "jfrog" {
source = "registry.coder.com/modules/jfrog-token/coder" source = "registry.coder.com/coder/jfrog-token/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
jfrog_url = "https://YYYY.jfrog.io" jfrog_url = "https://YYYY.jfrog.io"
@ -74,7 +74,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio
```tf ```tf
module "jfrog" { module "jfrog" {
source = "registry.coder.com/modules/jfrog-token/coder" source = "registry.coder.com/coder/jfrog-token/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
jfrog_url = "https://XXXX.jfrog.io" jfrog_url = "https://XXXX.jfrog.io"
@ -94,7 +94,7 @@ module "jfrog" {
data "coder_workspace" "me" {} data "coder_workspace" "me" {}
module "jfrog" { module "jfrog" {
source = "registry.coder.com/modules/jfrog-token/coder" source = "registry.coder.com/coder/jfrog-token/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
jfrog_url = "https://XXXX.jfrog.io" jfrog_url = "https://XXXX.jfrog.io"

View File

@ -16,7 +16,7 @@ A module that adds Jupyter Notebook in your Coder template.
```tf ```tf
module "jupyter-notebook" { module "jupyter-notebook" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jupyter-notebook/coder" source = "registry.coder.com/coder/jupyter-notebook/coder"
version = "1.0.19" version = "1.0.19"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }

View File

@ -16,7 +16,7 @@ A module that adds JupyterLab in your Coder template.
```tf ```tf
module "jupyterlab" { module "jupyterlab" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/jupyterlab/coder" source = "registry.coder.com/coder/jupyterlab/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }

View File

@ -14,7 +14,7 @@ Automatically install [KasmVNC](https://kasmweb.com/kasmvnc) in a workspace, and
```tf ```tf
module "kasmvnc" { module "kasmvnc" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/kasmvnc/coder" source = "registry.coder.com/coder/kasmvnc/coder"
version = "1.0.23" version = "1.0.23"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
desktop_environment = "xfce" desktop_environment = "xfce"

View File

@ -14,7 +14,7 @@ Run a script on workspace start that allows developers to run custom commands to
```tf ```tf
module "personalize" { module "personalize" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/personalize/coder" source = "registry.coder.com/coder/personalize/coder"
version = "1.0.2" version = "1.0.2"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }

View File

@ -14,7 +14,7 @@ Add the `slackme` command to your workspace that DMs you on Slack when your comm
```tf ```tf
module "slackme" { module "slackme" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/slackme/coder" source = "registry.coder.com/coder/slackme/coder"
version = "1.0.2" version = "1.0.2"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
auth_provider_id = "slack" auth_provider_id = "slack"
@ -74,7 +74,7 @@ slackme npm run long-build
```tf ```tf
module "slackme" { module "slackme" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/slackme/coder" source = "registry.coder.com/coder/slackme/coder"
version = "1.0.2" version = "1.0.2"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
auth_provider_id = "slack" auth_provider_id = "slack"

View File

@ -15,7 +15,7 @@ This module lets you authenticate with [Hashicorp Vault](https://www.vaultprojec
```tf ```tf
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-github/coder" source = "registry.coder.com/coder/vault-github/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
@ -47,7 +47,7 @@ To configure the Vault module, you must set up a Vault GitHub auth method. See t
```tf ```tf
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-github/coder" source = "registry.coder.com/coder/vault-github/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
@ -60,7 +60,7 @@ module "vault" {
```tf ```tf
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-github/coder" source = "registry.coder.com/coder/vault-github/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
@ -74,7 +74,7 @@ module "vault" {
```tf ```tf
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-github/coder" source = "registry.coder.com/coder/vault-github/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"

View File

@ -15,7 +15,7 @@ This module lets you authenticate with [Hashicorp Vault](https://www.vaultprojec
```tf ```tf
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-jwt/coder" source = "registry.coder.com/coder/vault-jwt/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
@ -43,7 +43,7 @@ curl -H "X-Vault-Token: ${VAULT_TOKEN}" -X GET "${VAULT_ADDR}/v1/coder/secrets/d
```tf ```tf
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-jwt/coder" source = "registry.coder.com/coder/vault-jwt/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
@ -59,7 +59,7 @@ data "coder_workspace_owner" "me" {}
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-jwt/coder" source = "registry.coder.com/coder/vault-jwt/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
@ -72,7 +72,7 @@ module "vault" {
```tf ```tf
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-jwt/coder" source = "registry.coder.com/coder/vault-jwt/coder"
version = "1.0.31" version = "1.0.31"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
@ -133,7 +133,7 @@ resource "jwt_signed_token" "vault" {
module "vault" { module "vault" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vault-jwt/coder" source = "registry.coder.com/coder/vault-jwt/coder"
version = "1.1.0" version = "1.1.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"

View File

@ -20,7 +20,7 @@ variable "vault_token" {
} }
module "vault" { module "vault" {
source = "registry.coder.com/modules/vault-token/coder" source = "registry.coder.com/coder/vault-token/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_token = var.token vault_token = var.token
@ -73,7 +73,7 @@ variable "vault_token" {
} }
module "vault" { module "vault" {
source = "registry.coder.com/modules/vault-token/coder" source = "registry.coder.com/coder/vault-token/coder"
version = "1.0.7" version = "1.0.7"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"

View File

@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
```tf ```tf
module "vscode" { module "vscode" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vscode-desktop/coder" source = "registry.coder.com/coder/vscode-desktop/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -29,7 +29,7 @@ module "vscode" {
```tf ```tf
module "vscode" { module "vscode" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vscode-desktop/coder" source = "registry.coder.com/coder/vscode-desktop/coder"
version = "1.0.15" version = "1.0.15"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/project" folder = "/home/coder/project"

View File

@ -14,7 +14,7 @@ Automatically install [Visual Studio Code Server](https://code.visualstudio.com/
```tf ```tf
module "vscode-web" { module "vscode-web" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vscode-web/coder" source = "registry.coder.com/coder/vscode-web/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
accept_license = true accept_license = true
@ -30,7 +30,7 @@ module "vscode-web" {
```tf ```tf
module "vscode-web" { module "vscode-web" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vscode-web/coder" source = "registry.coder.com/coder/vscode-web/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
install_prefix = "/home/coder/.vscode-web" install_prefix = "/home/coder/.vscode-web"
@ -44,7 +44,7 @@ module "vscode-web" {
```tf ```tf
module "vscode-web" { module "vscode-web" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vscode-web/coder" source = "registry.coder.com/coder/vscode-web/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
extensions = ["github.copilot", "ms-python.python", "ms-toolsai.jupyter"] extensions = ["github.copilot", "ms-python.python", "ms-toolsai.jupyter"]
@ -59,7 +59,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
```tf ```tf
module "vscode-web" { module "vscode-web" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vscode-web/coder" source = "registry.coder.com/coder/vscode-web/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
extensions = ["dracula-theme.theme-dracula"] extensions = ["dracula-theme.theme-dracula"]
@ -77,7 +77,7 @@ By default, this module installs the latest. To pin a specific version, retrieve
```tf ```tf
module "vscode-web" { module "vscode-web" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/vscode-web/coder" source = "registry.coder.com/coder/vscode-web/coder"
version = "1.0.30" version = "1.0.30"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
commit_id = "e54c774e0add60467559eb0d1e229c6452cf8447" commit_id = "e54c774e0add60467559eb0d1e229c6452cf8447"

View File

@ -15,7 +15,7 @@ Enable Remote Desktop + a web based client on Windows workspaces, powered by [de
# AWS example. See below for examples of using this module with other providers # AWS example. See below for examples of using this module with other providers
module "windows_rdp" { module "windows_rdp" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/windows-rdp/coder" source = "registry.coder.com/coder/windows-rdp/coder"
version = "1.0.18" version = "1.0.18"
agent_id = resource.coder_agent.main.id agent_id = resource.coder_agent.main.id
resource_id = resource.aws_instance.dev.id resource_id = resource.aws_instance.dev.id
@ -33,7 +33,7 @@ module "windows_rdp" {
```tf ```tf
module "windows_rdp" { module "windows_rdp" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/windows-rdp/coder" source = "registry.coder.com/coder/windows-rdp/coder"
version = "1.0.18" version = "1.0.18"
agent_id = resource.coder_agent.main.id agent_id = resource.coder_agent.main.id
resource_id = resource.aws_instance.dev.id resource_id = resource.aws_instance.dev.id
@ -45,7 +45,7 @@ module "windows_rdp" {
```tf ```tf
module "windows_rdp" { module "windows_rdp" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/windows-rdp/coder" source = "registry.coder.com/coder/windows-rdp/coder"
version = "1.0.18" version = "1.0.18"
agent_id = resource.coder_agent.main.id agent_id = resource.coder_agent.main.id
resource_id = resource.google_compute_instance.dev[0].id resource_id = resource.google_compute_instance.dev[0].id

View File

@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
```tf ```tf
module "windsurf" { module "windsurf" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/windsurf/coder" source = "registry.coder.com/coder/windsurf/coder"
version = "1.0.0" version = "1.0.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -29,7 +29,7 @@ module "windsurf" {
```tf ```tf
module "windsurf" { module "windsurf" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/windsurf/coder" source = "registry.coder.com/coder/windsurf/coder"
version = "1.0.0" version = "1.0.0"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
folder = "/home/coder/project" folder = "/home/coder/project"

View File

@ -15,7 +15,9 @@ A module that adds Apache Airflow in your Coder template.
```tf ```tf
module "airflow" { module "airflow" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/apache-airflow/coder" # Switch to "registry.coder.com/nataindata/apache-airflow/coder" on the next
# release
source = "registry.coder.com/coder/apache-airflow/coder"
version = "1.0.13" version = "1.0.13"
agent_id = coder_agent.main.id agent_id = coder_agent.main.id
} }

View File

@ -14,7 +14,8 @@ Automatically installs [Node.js](https://github.com/nodejs/node) via [nvm](https
```tf ```tf
module "nodejs" { module "nodejs" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/nodejs/coder" # Switch to "registry.coder.com/thezoker/nodejs/coder" for the next release
source = "registry.coder.com/coder/nodejs/coder"
version = "1.0.10" version = "1.0.10"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
} }
@ -27,7 +28,7 @@ This installs multiple versions of Node.js:
```tf ```tf
module "nodejs" { module "nodejs" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/nodejs/coder" source = "registry.coder.com/coder/nodejs/coder"
version = "1.0.10" version = "1.0.10"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
node_versions = [ node_versions = [
@ -46,7 +47,7 @@ A example with all available options:
```tf ```tf
module "nodejs" { module "nodejs" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/nodejs/coder" source = "registry.coder.com/coder/nodejs/coder"
version = "1.0.10" version = "1.0.10"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nvm_version = "v0.39.7" nvm_version = "v0.39.7"

View File

@ -17,7 +17,9 @@ Customize the preselected parameter value:
```tf ```tf
module "exoscale-instance-type" { module "exoscale-instance-type" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/exoscale-instance-type/coder" # Switch to "registry.coder.com/whizus/exoscale-instance-type/coder" for the
# next release
source = "registry.coder.com/coder/exoscale-instance-type/coder"
version = "1.0.12" version = "1.0.12"
default = "standard.medium" default = "standard.medium"
} }
@ -46,7 +48,7 @@ Change the display name a type using the corresponding maps:
```tf ```tf
module "exoscale-instance-type" { module "exoscale-instance-type" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/exoscale-instance-type/coder" source = "registry.coder.com/coder/exoscale-instance-type/coder"
version = "1.0.12" version = "1.0.12"
default = "standard.medium" default = "standard.medium"
@ -81,7 +83,7 @@ Show only gpu1 types
```tf ```tf
module "exoscale-instance-type" { module "exoscale-instance-type" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/exoscale-instance-type/coder" source = "registry.coder.com/coder/exoscale-instance-type/coder"
version = "1.0.12" version = "1.0.12"
default = "gpu.large" default = "gpu.large"
type_category = ["gpu"] type_category = ["gpu"]

View File

@ -17,7 +17,9 @@ Customize the preselected parameter value:
```tf ```tf
module "exoscale-zone" { module "exoscale-zone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/exoscale-zone/coder" # Switch to "registry.coder.com/whizus/exoscale-zone/coder" for the next
# release
source = "registry.coder.com/coder/exoscale-zone/coder"
version = "1.0.12" version = "1.0.12"
default = "ch-dk-2" default = "ch-dk-2"
} }
@ -45,7 +47,7 @@ Change the display name and icon for a zone using the corresponding maps:
```tf ```tf
module "exoscale-zone" { module "exoscale-zone" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/exoscale-zone/coder" source = "registry.coder.com/coder/exoscale-zone/coder"
version = "1.0.12" version = "1.0.12"
default = "at-vie-1" default = "at-vie-1"
@ -77,7 +79,7 @@ Hide the Switzerland zones Geneva and Zurich
```tf ```tf
module "exoscale-zone" { module "exoscale-zone" {
source = "registry.coder.com/modules/exoscale-zone/coder" source = "registry.coder.com/coder/exoscale-zone/coder"
version = "1.0.12" version = "1.0.12"
exclude = ["ch-gva-2", "ch-dk-2"] exclude = ["ch-gva-2", "ch-dk-2"]
} }