mirror of
https://github.com/coder/coder.git
synced 2026-09-22 13:10:21 +08:00
> [!NOTE] > This PR was authored by Coder Agents on behalf of @jeremyruppel. Runs the `scripts/modulegen` generator against the coder/registry to produce the initial module catalog for the template builder. Generates `module.json` and `.tf.tmpl` files for 19 modules across four categories: - **IDE**: code-server, jetbrains, vscode-desktop, vscode-web, cursor, windsurf, zed, kiro - **AI Agent**: claude-code, aider, goose, amazon-q - **Source Control**: git-clone, git-config, git-commit-signing - **Utility**: dotfiles, personalize, filebrowser, jupyterlab Also updates `catalog_test.go` to validate the new embedded modules load correctly.
13 lines
488 B
Cheetah
13 lines
488 B
Cheetah
module "git-clone" {
|
|
count = data.coder_workspace.me.start_count
|
|
source = "{{ .RegistryBase }}/coder/git-clone/coder"
|
|
version = "{{ .PinnedVersion }}"
|
|
agent_id = coder_agent.{{ .AgentResourceName }}.id
|
|
base_dir = {{ .Variables.base_dir }}
|
|
branch_name = {{ .Variables.branch_name }}
|
|
folder_name = {{ .Variables.folder_name }}
|
|
post_clone_script = {{ .Variables.post_clone_script }}
|
|
pre_clone_script = {{ .Variables.pre_clone_script }}
|
|
url = {{ .Variables.url }}
|
|
}
|