├── .env.example ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md ├── dependabot.yaml ├── scripts │ ├── check_registry_site_health.sh │ └── version-bump.sh ├── typos.toml └── workflows │ ├── check_registry_site_health.yaml │ ├── ci.yaml │ ├── deploy-registry.yaml │ ├── golangci-lint.yml │ ├── release.yml │ └── version-bump.yaml ├── .gitignore ├── .golangci.yml ├── .icons ├── aider.svg ├── airflow.svg ├── akamai.svg ├── amazon-q.svg ├── antigravity.svg ├── auggie.svg ├── auto-dev-server.svg ├── aws.svg ├── azure.svg ├── box-emoji.svg ├── claude.svg ├── cmux.svg ├── code.svg ├── coder.svg ├── copyparty.svg ├── cursor.svg ├── dcv.svg ├── desktop.svg ├── devcontainers.svg ├── digital-ocean.svg ├── docker.svg ├── dotfiles.svg ├── electric-plug-emoji.svg ├── exoscale.svg ├── filebrowser.svg ├── fleet.svg ├── fly.svg ├── folder.svg ├── gateway.svg ├── gcp.svg ├── gemini.svg ├── git.svg ├── github.svg ├── goose.svg ├── jetbrains.svg ├── jfrog.svg ├── jupyter.svg ├── kasmvnc.svg ├── kiro.svg ├── kubernetes.svg ├── lxc.svg ├── mux.svg ├── nextflow.svg ├── nexus-repository.svg ├── node.svg ├── nomad.svg ├── openai.svg ├── opencode.svg ├── openwebui.svg ├── personalize.svg ├── pgadmin.svg ├── positron.svg ├── proxmox.svg ├── rdp.svg ├── rstudio.svg ├── rustdesk.svg ├── slack.svg ├── sourcegraph-amp.svg ├── tasks.svg ├── tmux.svg ├── vault.svg ├── windsurf.svg └── zed.svg ├── .prettierignore ├── .shellcheckrc ├── .vscode └── settings.json ├── AGENTS.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINER.md ├── README.md ├── SECURITY.md ├── bun.lock ├── bunfig.toml ├── cmd └── readmevalidation │ ├── codermodules.go │ ├── codermodules_test.go │ ├── coderresources.go │ ├── codertemplates.go │ ├── contributors.go │ ├── errors.go │ ├── main.go │ ├── readmefiles.go │ ├── repostructure.go │ └── testSamples │ └── sampleReadmeBody.md ├── examples ├── modules │ ├── MODULE_NAME.tftest.hcl │ ├── README.md │ ├── main.tf │ └── run.sh ├── namespace │ └── README.md └── templates │ ├── README.md │ └── main.tf ├── go.mod ├── go.sum ├── images └── coder-agent-bar.png ├── package.json ├── registry ├── AJ0070 │ ├── .images │ │ ├── avatar.jpeg │ │ └── avatar.png │ ├── README.md │ └── modules │ │ └── pgadmin │ │ ├── README.md │ │ ├── main.test.ts │ │ ├── main.tf │ │ └── run.sh ├── BenraouaneSoufiane │ ├── .images │ │ └── avatar.png │ ├── README.md │ └── modules │ │ └── rustdesk │ │ ├── README.md │ │ ├── main.tf │ │ └── run.sh ├── anomaly │ ├── .images │ │ └── avatar.jpeg │ ├── README.md │ └── modules │ │ └── tmux │ │ ├── README.md │ │ ├── main.test.ts │ │ ├── main.tf │ │ └── scripts │ │ ├── run.sh │ │ └── start.sh ├── coder-labs │ ├── .images │ │ ├── avatar.svg │ │ ├── openwebui.png │ │ └── tasks-screenshot.png │ ├── README.md │ ├── modules │ │ ├── archive │ │ │ ├── README.md │ │ │ ├── archive.tftest.hcl │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── run.sh │ │ │ └── scripts │ │ │ │ └── archive-lib.sh │ │ ├── auggie │ │ │ ├── README.md │ │ │ ├── auggie.tftest.hcl │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── testdata │ │ │ │ └── auggie-mock.sh │ │ ├── codex │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── testdata │ │ │ │ └── codex-mock.sh │ │ ├── copilot │ │ │ ├── README.md │ │ │ ├── copilot.tftest.hcl │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── testdata │ │ │ │ └── copilot-mock.sh │ │ ├── cursor-cli │ │ │ ├── README.md │ │ │ ├── cursor-cli.tftest.hcl │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── testdata │ │ │ │ └── cursor-cli-mock.sh │ │ ├── gemini │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ ├── nextflow │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── open-webui │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── main.tftest.hcl │ │ │ └── run.sh │ │ ├── opencode │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── main.tftest.hcl │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── testdata │ │ │ │ └── opencode-mock.sh │ │ └── sourcegraph-amp │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── scripts │ │ │ ├── install.sh │ │ │ └── start.sh │ │ │ └── testdata │ │ │ └── amp-mock.sh │ └── templates │ │ ├── docker-build │ │ ├── README.md │ │ ├── build │ │ │ └── Dockerfile │ │ └── main.tf │ │ ├── externally-managed-workspace │ │ ├── README.md │ │ └── main.tf │ │ └── tasks-docker │ │ ├── README.md │ │ └── main.tf ├── coder │ ├── .images │ │ ├── amazon-dcv-windows.png │ │ ├── amazon-q.png │ │ ├── avatar.svg │ │ ├── aws-custom.png │ │ ├── aws-devcontainer-architecture.svg │ │ ├── aws-exclude.png │ │ ├── aws-regions.png │ │ ├── azure-custom.png │ │ ├── azure-default.png │ │ ├── azure-exclude.png │ │ ├── coder-login.png │ │ ├── filebrowser.png │ │ ├── flyio-basic.png │ │ ├── flyio-custom.png │ │ ├── flyio-filtered.png │ │ ├── gcp-devcontainer-architecture.svg │ │ ├── gcp-regions.png │ │ ├── git-config-params.png │ │ ├── hcp-vault-secrets-credentials.png │ │ ├── jetbrains-dropdown.png │ │ ├── jetbrains-gateway.png │ │ ├── jfrog-oauth.png │ │ ├── jfrog.png │ │ ├── jupyter-notebook.png │ │ ├── jupyterlab.png │ │ ├── mux-product-hero.webp │ │ ├── rstudio-server.png │ │ ├── vault-login.png │ │ ├── vscode-desktop.png │ │ └── vscode-web.gif │ ├── README.md │ ├── modules │ │ ├── agentapi │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── scripts │ │ │ │ ├── agentapi-wait-for-start.sh │ │ │ │ └── main.sh │ │ │ ├── test-util.ts │ │ │ └── testdata │ │ │ │ ├── agentapi-mock.js │ │ │ │ ├── agentapi-start.sh │ │ │ │ └── ai-agent-mock.js │ │ ├── aider │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── main.tftest.hcl │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── testdata │ │ │ │ └── aider-mock.sh │ │ ├── amazon-dcv-windows │ │ │ ├── README.md │ │ │ ├── install-dcv.ps1 │ │ │ └── main.tf │ │ ├── amazon-q │ │ │ ├── README.md │ │ │ ├── amazon-q.tftest.hcl │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── templates │ │ │ │ └── agent-config.json.tpl │ │ ├── antigravity │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── aws-region │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── azure-region │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── claude-code │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── main.tftest.hcl │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── testdata │ │ │ │ └── claude-mock.sh │ │ ├── code-server │ │ │ ├── README.md │ │ │ ├── code-server.tftest.hcl │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── coder-login │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── main.tftest.hcl │ │ ├── cursor │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── devcontainers-cli │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── dotfiles │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── filebrowser │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── fly-region │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── gcp-region │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── git-clone │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── git-commit-signing │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── git-config │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── github-upload-public-key │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── goose │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── start.sh │ │ │ └── testdata │ │ │ │ ├── agentapi-mock-print-args.js │ │ │ │ └── goose-mock.sh │ │ ├── hcp-vault-secrets │ │ │ ├── README.md │ │ │ └── main.tf │ │ ├── jetbrains-fleet │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── jetbrains-gateway │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── jetbrains │ │ │ ├── README.md │ │ │ ├── jetbrains.tftest.hcl │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── jfrog-oauth │ │ │ ├── .npmrc.tftpl │ │ │ ├── README.md │ │ │ ├── conda.conf.tftpl │ │ │ ├── jfrog-oauth.tftest.hcl │ │ │ ├── main.tf │ │ │ ├── pip.conf.tftpl │ │ │ ├── run.sh │ │ │ └── settings.xml.tftpl │ │ ├── jfrog-token │ │ │ ├── .npmrc.tftpl │ │ │ ├── README.md │ │ │ ├── conda.conf.tftpl │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── pip.conf.tftpl │ │ │ ├── run.sh │ │ │ └── settings.xml.tftpl │ │ ├── jupyter-notebook │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── jupyterlab │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── kasmvnc │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── path_vnc.html │ │ │ └── run.sh │ │ ├── kiro │ │ │ ├── README.md │ │ │ ├── kiro.tftest.hcl │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── local-windows-rdp │ │ │ ├── README.md │ │ │ ├── configure-rdp.ps1 │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── mux │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── mux.tftest.hcl │ │ │ └── run.sh │ │ ├── personalize │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── rstudio-server │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── slackme │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── slackme.sh │ │ ├── vault-cli │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── main.tftest.hcl │ │ │ └── run.sh │ │ ├── vault-github │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── vault-jwt │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── vault-token │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── vscode-desktop-core │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── vscode-desktop │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ ├── vscode-web │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── run.sh │ │ ├── windows-rdp │ │ │ ├── README.md │ │ │ ├── devolutions-patch.js │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ ├── powershell-installation-script.tftpl │ │ │ ├── tsconfig.json │ │ │ └── video-thumbnails │ │ │ │ └── video-thumbnail.png │ │ ├── windsurf │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ │ └── zed │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ ├── main.tf │ │ │ └── zed.tftest.hcl │ └── templates │ │ ├── aws-devcontainer │ │ ├── README.md │ │ ├── cloud-init │ │ │ ├── cloud-config.yaml.tftpl │ │ │ └── userdata.sh.tftpl │ │ └── main.tf │ │ ├── aws-linux │ │ ├── README.md │ │ ├── cloud-init │ │ │ ├── cloud-config.yaml.tftpl │ │ │ └── userdata.sh.tftpl │ │ └── main.tf │ │ ├── aws-windows │ │ ├── README.md │ │ └── main.tf │ │ ├── azure-linux │ │ ├── README.md │ │ ├── cloud-init │ │ │ └── cloud-config.yaml.tftpl │ │ └── main.tf │ │ ├── azure-windows │ │ ├── FirstLogonCommands.xml │ │ ├── Initialize.ps1.tftpl │ │ ├── README.md │ │ └── main.tf │ │ ├── digitalocean-linux │ │ ├── README.md │ │ ├── cloud-config.yaml.tftpl │ │ └── main.tf │ │ ├── docker-devcontainer │ │ ├── README.md │ │ └── main.tf │ │ ├── docker │ │ ├── README.md │ │ └── main.tf │ │ ├── gcp-devcontainer │ │ ├── README.md │ │ └── main.tf │ │ ├── gcp-linux │ │ ├── README.md │ │ └── main.tf │ │ ├── gcp-vm-container │ │ ├── README.md │ │ └── main.tf │ │ ├── gcp-windows │ │ ├── README.md │ │ └── main.tf │ │ ├── incus │ │ ├── README.md │ │ └── main.tf │ │ ├── kubernetes-devcontainer │ │ ├── README.md │ │ └── main.tf │ │ ├── kubernetes-envbox │ │ ├── README.md │ │ └── main.tf │ │ ├── kubernetes │ │ ├── README.md │ │ └── main.tf │ │ ├── nomad-docker │ │ ├── README.md │ │ ├── main.tf │ │ └── workspace.nomad.tpl │ │ └── scratch │ │ ├── README.md │ │ └── main.tf ├── cytoshahar │ ├── .images │ │ └── avatar.jpeg │ ├── README.md │ └── modules │ │ └── positron │ │ ├── README.md │ │ ├── main.test.ts │ │ └── main.tf ├── djarbz │ ├── .images │ │ ├── avatar.png │ │ └── copyparty_screenshot.png │ ├── README.md │ └── modules │ │ └── copyparty │ │ ├── README.md │ │ ├── copyparty.tftest.hcl │ │ ├── main.tf │ │ └── run.sh ├── ericpaulsen │ ├── .images │ │ └── avatar.png │ ├── README.md │ └── templates │ │ ├── k8s-username │ │ ├── README.md │ │ └── main.tf │ │ └── nfs-deployment │ │ ├── README.md │ │ └── main.tf ├── harleylrn │ ├── .images │ │ ├── avatar.png │ │ └── kiro-cli.png │ ├── README.md │ └── modules │ │ └── kiro-cli │ │ ├── README.md │ │ ├── kiro-cli.tftest.hcl │ │ ├── main.test.ts │ │ ├── main.tf │ │ ├── scripts │ │ ├── install.sh │ │ └── start.sh │ │ └── templates │ │ └── agent-config.json.tpl ├── mavrickrishi │ ├── .images │ │ └── avatar.jpeg │ ├── README.md │ └── modules │ │ ├── auto-start-dev-server │ │ ├── README.md │ │ ├── main.test.ts │ │ ├── main.tf │ │ └── run.sh │ │ ├── aws-ami-snapshot │ │ ├── README.md │ │ ├── main.test.ts │ │ └── main.tf │ │ └── nexus-repository │ │ ├── README.md │ │ ├── main.test.ts │ │ ├── main.tf │ │ └── run.sh ├── nataindata │ ├── .images │ │ ├── airflow.png │ │ └── avatar.png │ ├── README.md │ └── modules │ │ └── apache-airflow │ │ ├── README.md │ │ ├── main.tf │ │ └── run.sh ├── sharkymark │ ├── .images │ │ └── avatar.png │ ├── README.md │ └── templates │ │ └── docker-claude │ │ ├── README.md │ │ └── main.tf ├── thezoker │ ├── .images │ │ └── avatar.jpeg │ ├── README.md │ └── modules │ │ └── nodejs │ │ ├── README.md │ │ ├── main.test.ts │ │ ├── main.tf │ │ └── run.sh ├── umair │ ├── .images │ │ └── avatar.jpeg │ ├── README.md │ ├── modules │ │ └── digitalocean-region │ │ │ ├── README.md │ │ │ ├── main.test.ts │ │ │ └── main.tf │ └── templates │ │ ├── linode-vm │ │ ├── README.md │ │ ├── cloud-init │ │ │ └── cloud-config.yaml.tftpl │ │ └── main.tf │ │ └── proxmox-vm │ │ ├── README.md │ │ ├── cloud-init │ │ └── user-data.tftpl │ │ └── main.tf └── whizus │ ├── .images │ ├── avatar.png │ ├── exoscale-custom.png │ ├── exoscale-exclude.png │ ├── exoscale-instance-custom.png │ ├── exoscale-instance-exclude.png │ ├── exoscale-instance-types.png │ └── exoscale-zones.png │ ├── README.md │ └── modules │ ├── exoscale-instance-type │ ├── README.md │ ├── main.test.ts │ └── main.tf │ └── exoscale-zone │ ├── README.md │ ├── main.test.ts │ └── main.tf ├── scripts ├── new_module.sh ├── new_template.sh ├── rules.go ├── shellcheck_validate.sh ├── tag_release.sh ├── terraform_test_all.sh ├── terraform_validate.sh ├── ts_test_auto.sh └── validate_set_u_order.sh ├── setup.ts ├── test └── test.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.env.example -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- 1 | ../AGENTS.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/scripts/check_registry_site_health.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/scripts/check_registry_site_health.sh -------------------------------------------------------------------------------- /.github/scripts/version-bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/scripts/version-bump.sh -------------------------------------------------------------------------------- /.github/typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/typos.toml -------------------------------------------------------------------------------- /.github/workflows/check_registry_site_health.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/workflows/check_registry_site_health.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/workflows/deploy-registry.yaml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/version-bump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.github/workflows/version-bump.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.icons/aider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/aider.svg -------------------------------------------------------------------------------- /.icons/airflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/airflow.svg -------------------------------------------------------------------------------- /.icons/akamai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/akamai.svg -------------------------------------------------------------------------------- /.icons/amazon-q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/amazon-q.svg -------------------------------------------------------------------------------- /.icons/antigravity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/antigravity.svg -------------------------------------------------------------------------------- /.icons/auggie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/auggie.svg -------------------------------------------------------------------------------- /.icons/auto-dev-server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/auto-dev-server.svg -------------------------------------------------------------------------------- /.icons/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/aws.svg -------------------------------------------------------------------------------- /.icons/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/azure.svg -------------------------------------------------------------------------------- /.icons/box-emoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/box-emoji.svg -------------------------------------------------------------------------------- /.icons/claude.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/claude.svg -------------------------------------------------------------------------------- /.icons/cmux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/cmux.svg -------------------------------------------------------------------------------- /.icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/code.svg -------------------------------------------------------------------------------- /.icons/coder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/coder.svg -------------------------------------------------------------------------------- /.icons/copyparty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/copyparty.svg -------------------------------------------------------------------------------- /.icons/cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/cursor.svg -------------------------------------------------------------------------------- /.icons/dcv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/dcv.svg -------------------------------------------------------------------------------- /.icons/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/desktop.svg -------------------------------------------------------------------------------- /.icons/devcontainers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/devcontainers.svg -------------------------------------------------------------------------------- /.icons/digital-ocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/digital-ocean.svg -------------------------------------------------------------------------------- /.icons/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/docker.svg -------------------------------------------------------------------------------- /.icons/dotfiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/dotfiles.svg -------------------------------------------------------------------------------- /.icons/electric-plug-emoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/electric-plug-emoji.svg -------------------------------------------------------------------------------- /.icons/exoscale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/exoscale.svg -------------------------------------------------------------------------------- /.icons/filebrowser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/filebrowser.svg -------------------------------------------------------------------------------- /.icons/fleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/fleet.svg -------------------------------------------------------------------------------- /.icons/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/fly.svg -------------------------------------------------------------------------------- /.icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/folder.svg -------------------------------------------------------------------------------- /.icons/gateway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/gateway.svg -------------------------------------------------------------------------------- /.icons/gcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/gcp.svg -------------------------------------------------------------------------------- /.icons/gemini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/gemini.svg -------------------------------------------------------------------------------- /.icons/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/git.svg -------------------------------------------------------------------------------- /.icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/github.svg -------------------------------------------------------------------------------- /.icons/goose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/goose.svg -------------------------------------------------------------------------------- /.icons/jetbrains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/jetbrains.svg -------------------------------------------------------------------------------- /.icons/jfrog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/jfrog.svg -------------------------------------------------------------------------------- /.icons/jupyter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/jupyter.svg -------------------------------------------------------------------------------- /.icons/kasmvnc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/kasmvnc.svg -------------------------------------------------------------------------------- /.icons/kiro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/kiro.svg -------------------------------------------------------------------------------- /.icons/kubernetes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/kubernetes.svg -------------------------------------------------------------------------------- /.icons/lxc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/lxc.svg -------------------------------------------------------------------------------- /.icons/mux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/mux.svg -------------------------------------------------------------------------------- /.icons/nextflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/nextflow.svg -------------------------------------------------------------------------------- /.icons/nexus-repository.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/nexus-repository.svg -------------------------------------------------------------------------------- /.icons/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/node.svg -------------------------------------------------------------------------------- /.icons/nomad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/nomad.svg -------------------------------------------------------------------------------- /.icons/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/openai.svg -------------------------------------------------------------------------------- /.icons/opencode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/opencode.svg -------------------------------------------------------------------------------- /.icons/openwebui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/openwebui.svg -------------------------------------------------------------------------------- /.icons/personalize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/personalize.svg -------------------------------------------------------------------------------- /.icons/pgadmin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/pgadmin.svg -------------------------------------------------------------------------------- /.icons/positron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/positron.svg -------------------------------------------------------------------------------- /.icons/proxmox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/proxmox.svg -------------------------------------------------------------------------------- /.icons/rdp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/rdp.svg -------------------------------------------------------------------------------- /.icons/rstudio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/rstudio.svg -------------------------------------------------------------------------------- /.icons/rustdesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/rustdesk.svg -------------------------------------------------------------------------------- /.icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/slack.svg -------------------------------------------------------------------------------- /.icons/sourcegraph-amp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/sourcegraph-amp.svg -------------------------------------------------------------------------------- /.icons/tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/tasks.svg -------------------------------------------------------------------------------- /.icons/tmux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/tmux.svg -------------------------------------------------------------------------------- /.icons/vault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/vault.svg -------------------------------------------------------------------------------- /.icons/windsurf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/windsurf.svg -------------------------------------------------------------------------------- /.icons/zed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.icons/zed.svg -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.prettierignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/MAINTAINER.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/bun.lock -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- 1 | [test] 2 | preload = ["./setup.ts"] -------------------------------------------------------------------------------- /cmd/readmevalidation/codermodules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/codermodules.go -------------------------------------------------------------------------------- /cmd/readmevalidation/codermodules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/codermodules_test.go -------------------------------------------------------------------------------- /cmd/readmevalidation/coderresources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/coderresources.go -------------------------------------------------------------------------------- /cmd/readmevalidation/codertemplates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/codertemplates.go -------------------------------------------------------------------------------- /cmd/readmevalidation/contributors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/contributors.go -------------------------------------------------------------------------------- /cmd/readmevalidation/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/errors.go -------------------------------------------------------------------------------- /cmd/readmevalidation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/main.go -------------------------------------------------------------------------------- /cmd/readmevalidation/readmefiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/readmefiles.go -------------------------------------------------------------------------------- /cmd/readmevalidation/repostructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/repostructure.go -------------------------------------------------------------------------------- /cmd/readmevalidation/testSamples/sampleReadmeBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/cmd/readmevalidation/testSamples/sampleReadmeBody.md -------------------------------------------------------------------------------- /examples/modules/MODULE_NAME.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/examples/modules/MODULE_NAME.tftest.hcl -------------------------------------------------------------------------------- /examples/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/examples/modules/README.md -------------------------------------------------------------------------------- /examples/modules/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/examples/modules/main.tf -------------------------------------------------------------------------------- /examples/modules/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/examples/modules/run.sh -------------------------------------------------------------------------------- /examples/namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/examples/namespace/README.md -------------------------------------------------------------------------------- /examples/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/examples/templates/README.md -------------------------------------------------------------------------------- /examples/templates/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/examples/templates/main.tf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/go.sum -------------------------------------------------------------------------------- /images/coder-agent-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/images/coder-agent-bar.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/package.json -------------------------------------------------------------------------------- /registry/AJ0070/.images/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/AJ0070/.images/avatar.jpeg -------------------------------------------------------------------------------- /registry/AJ0070/.images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/AJ0070/.images/avatar.png -------------------------------------------------------------------------------- /registry/AJ0070/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/AJ0070/README.md -------------------------------------------------------------------------------- /registry/AJ0070/modules/pgadmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/AJ0070/modules/pgadmin/README.md -------------------------------------------------------------------------------- /registry/AJ0070/modules/pgadmin/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/AJ0070/modules/pgadmin/main.test.ts -------------------------------------------------------------------------------- /registry/AJ0070/modules/pgadmin/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/AJ0070/modules/pgadmin/main.tf -------------------------------------------------------------------------------- /registry/AJ0070/modules/pgadmin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/AJ0070/modules/pgadmin/run.sh -------------------------------------------------------------------------------- /registry/BenraouaneSoufiane/.images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/BenraouaneSoufiane/.images/avatar.png -------------------------------------------------------------------------------- /registry/BenraouaneSoufiane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/BenraouaneSoufiane/README.md -------------------------------------------------------------------------------- /registry/BenraouaneSoufiane/modules/rustdesk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/BenraouaneSoufiane/modules/rustdesk/README.md -------------------------------------------------------------------------------- /registry/BenraouaneSoufiane/modules/rustdesk/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/BenraouaneSoufiane/modules/rustdesk/main.tf -------------------------------------------------------------------------------- /registry/BenraouaneSoufiane/modules/rustdesk/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/BenraouaneSoufiane/modules/rustdesk/run.sh -------------------------------------------------------------------------------- /registry/anomaly/.images/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/anomaly/.images/avatar.jpeg -------------------------------------------------------------------------------- /registry/anomaly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/anomaly/README.md -------------------------------------------------------------------------------- /registry/anomaly/modules/tmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/anomaly/modules/tmux/README.md -------------------------------------------------------------------------------- /registry/anomaly/modules/tmux/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/anomaly/modules/tmux/main.test.ts -------------------------------------------------------------------------------- /registry/anomaly/modules/tmux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/anomaly/modules/tmux/main.tf -------------------------------------------------------------------------------- /registry/anomaly/modules/tmux/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/anomaly/modules/tmux/scripts/run.sh -------------------------------------------------------------------------------- /registry/anomaly/modules/tmux/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/anomaly/modules/tmux/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder-labs/.images/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/.images/avatar.svg -------------------------------------------------------------------------------- /registry/coder-labs/.images/openwebui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/.images/openwebui.png -------------------------------------------------------------------------------- /registry/coder-labs/.images/tasks-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/.images/tasks-screenshot.png -------------------------------------------------------------------------------- /registry/coder-labs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/archive/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/archive/archive.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/archive/archive.tftest.hcl -------------------------------------------------------------------------------- /registry/coder-labs/modules/archive/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/archive/main.test.ts -------------------------------------------------------------------------------- /registry/coder-labs/modules/archive/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/archive/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/archive/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/archive/run.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/archive/scripts/archive-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/archive/scripts/archive-lib.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/auggie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/auggie/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/auggie/auggie.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/auggie/auggie.tftest.hcl -------------------------------------------------------------------------------- /registry/coder-labs/modules/auggie/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/auggie/main.test.ts -------------------------------------------------------------------------------- /registry/coder-labs/modules/auggie/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/auggie/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/auggie/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/auggie/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/auggie/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/auggie/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/auggie/testdata/auggie-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/auggie/testdata/auggie-mock.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/codex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/codex/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/codex/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/codex/main.test.ts -------------------------------------------------------------------------------- /registry/coder-labs/modules/codex/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/codex/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/codex/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/codex/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/codex/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/codex/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/codex/testdata/codex-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/codex/testdata/codex-mock.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/copilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/copilot/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/copilot/copilot.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/copilot/copilot.tftest.hcl -------------------------------------------------------------------------------- /registry/coder-labs/modules/copilot/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/copilot/main.test.ts -------------------------------------------------------------------------------- /registry/coder-labs/modules/copilot/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/copilot/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/copilot/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/copilot/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/copilot/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/copilot/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/copilot/testdata/copilot-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/copilot/testdata/copilot-mock.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/cursor-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/cursor-cli/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/cursor-cli/cursor-cli.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/cursor-cli/cursor-cli.tftest.hcl -------------------------------------------------------------------------------- /registry/coder-labs/modules/cursor-cli/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/cursor-cli/main.test.ts -------------------------------------------------------------------------------- /registry/coder-labs/modules/cursor-cli/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/cursor-cli/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/cursor-cli/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/cursor-cli/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/cursor-cli/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/cursor-cli/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/cursor-cli/testdata/cursor-cli-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/cursor-cli/testdata/cursor-cli-mock.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/gemini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/gemini/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/gemini/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/gemini/main.test.ts -------------------------------------------------------------------------------- /registry/coder-labs/modules/gemini/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/gemini/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/gemini/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/gemini/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/gemini/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/gemini/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/nextflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/nextflow/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/nextflow/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/nextflow/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/nextflow/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/nextflow/run.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/open-webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/open-webui/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/open-webui/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/open-webui/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/open-webui/main.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/open-webui/main.tftest.hcl -------------------------------------------------------------------------------- /registry/coder-labs/modules/open-webui/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/open-webui/run.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/opencode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/opencode/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/opencode/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/opencode/main.test.ts -------------------------------------------------------------------------------- /registry/coder-labs/modules/opencode/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/opencode/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/opencode/main.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/opencode/main.tftest.hcl -------------------------------------------------------------------------------- /registry/coder-labs/modules/opencode/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/opencode/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/opencode/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/opencode/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/opencode/testdata/opencode-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/opencode/testdata/opencode-mock.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/sourcegraph-amp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/sourcegraph-amp/README.md -------------------------------------------------------------------------------- /registry/coder-labs/modules/sourcegraph-amp/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/sourcegraph-amp/main.test.ts -------------------------------------------------------------------------------- /registry/coder-labs/modules/sourcegraph-amp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/sourcegraph-amp/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/modules/sourcegraph-amp/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/sourcegraph-amp/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/sourcegraph-amp/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/sourcegraph-amp/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder-labs/modules/sourcegraph-amp/testdata/amp-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/modules/sourcegraph-amp/testdata/amp-mock.sh -------------------------------------------------------------------------------- /registry/coder-labs/templates/docker-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/templates/docker-build/README.md -------------------------------------------------------------------------------- /registry/coder-labs/templates/docker-build/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/templates/docker-build/build/Dockerfile -------------------------------------------------------------------------------- /registry/coder-labs/templates/docker-build/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/templates/docker-build/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/templates/externally-managed-workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/templates/externally-managed-workspace/README.md -------------------------------------------------------------------------------- /registry/coder-labs/templates/externally-managed-workspace/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/templates/externally-managed-workspace/main.tf -------------------------------------------------------------------------------- /registry/coder-labs/templates/tasks-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/templates/tasks-docker/README.md -------------------------------------------------------------------------------- /registry/coder-labs/templates/tasks-docker/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder-labs/templates/tasks-docker/main.tf -------------------------------------------------------------------------------- /registry/coder/.images/amazon-dcv-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/amazon-dcv-windows.png -------------------------------------------------------------------------------- /registry/coder/.images/amazon-q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/amazon-q.png -------------------------------------------------------------------------------- /registry/coder/.images/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/avatar.svg -------------------------------------------------------------------------------- /registry/coder/.images/aws-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/aws-custom.png -------------------------------------------------------------------------------- /registry/coder/.images/aws-devcontainer-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/aws-devcontainer-architecture.svg -------------------------------------------------------------------------------- /registry/coder/.images/aws-exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/aws-exclude.png -------------------------------------------------------------------------------- /registry/coder/.images/aws-regions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/aws-regions.png -------------------------------------------------------------------------------- /registry/coder/.images/azure-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/azure-custom.png -------------------------------------------------------------------------------- /registry/coder/.images/azure-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/azure-default.png -------------------------------------------------------------------------------- /registry/coder/.images/azure-exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/azure-exclude.png -------------------------------------------------------------------------------- /registry/coder/.images/coder-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/coder-login.png -------------------------------------------------------------------------------- /registry/coder/.images/filebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/filebrowser.png -------------------------------------------------------------------------------- /registry/coder/.images/flyio-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/flyio-basic.png -------------------------------------------------------------------------------- /registry/coder/.images/flyio-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/flyio-custom.png -------------------------------------------------------------------------------- /registry/coder/.images/flyio-filtered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/flyio-filtered.png -------------------------------------------------------------------------------- /registry/coder/.images/gcp-devcontainer-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/gcp-devcontainer-architecture.svg -------------------------------------------------------------------------------- /registry/coder/.images/gcp-regions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/gcp-regions.png -------------------------------------------------------------------------------- /registry/coder/.images/git-config-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/git-config-params.png -------------------------------------------------------------------------------- /registry/coder/.images/hcp-vault-secrets-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/hcp-vault-secrets-credentials.png -------------------------------------------------------------------------------- /registry/coder/.images/jetbrains-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/jetbrains-dropdown.png -------------------------------------------------------------------------------- /registry/coder/.images/jetbrains-gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/jetbrains-gateway.png -------------------------------------------------------------------------------- /registry/coder/.images/jfrog-oauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/jfrog-oauth.png -------------------------------------------------------------------------------- /registry/coder/.images/jfrog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/jfrog.png -------------------------------------------------------------------------------- /registry/coder/.images/jupyter-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/jupyter-notebook.png -------------------------------------------------------------------------------- /registry/coder/.images/jupyterlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/jupyterlab.png -------------------------------------------------------------------------------- /registry/coder/.images/mux-product-hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/mux-product-hero.webp -------------------------------------------------------------------------------- /registry/coder/.images/rstudio-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/rstudio-server.png -------------------------------------------------------------------------------- /registry/coder/.images/vault-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/vault-login.png -------------------------------------------------------------------------------- /registry/coder/.images/vscode-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/vscode-desktop.png -------------------------------------------------------------------------------- /registry/coder/.images/vscode-web.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/.images/vscode-web.gif -------------------------------------------------------------------------------- /registry/coder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/README.md -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/README.md -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/scripts/agentapi-wait-for-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/scripts/agentapi-wait-for-start.sh -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/scripts/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/scripts/main.sh -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/test-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/test-util.ts -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/testdata/agentapi-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/testdata/agentapi-mock.js -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/testdata/agentapi-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/testdata/agentapi-start.sh -------------------------------------------------------------------------------- /registry/coder/modules/agentapi/testdata/ai-agent-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/agentapi/testdata/ai-agent-mock.js -------------------------------------------------------------------------------- /registry/coder/modules/aider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aider/README.md -------------------------------------------------------------------------------- /registry/coder/modules/aider/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aider/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/aider/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aider/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/aider/main.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aider/main.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/aider/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aider/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder/modules/aider/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aider/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder/modules/aider/testdata/aider-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aider/testdata/aider-mock.sh -------------------------------------------------------------------------------- /registry/coder/modules/amazon-dcv-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-dcv-windows/README.md -------------------------------------------------------------------------------- /registry/coder/modules/amazon-dcv-windows/install-dcv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-dcv-windows/install-dcv.ps1 -------------------------------------------------------------------------------- /registry/coder/modules/amazon-dcv-windows/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-dcv-windows/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/amazon-q/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-q/README.md -------------------------------------------------------------------------------- /registry/coder/modules/amazon-q/amazon-q.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-q/amazon-q.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/amazon-q/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-q/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/amazon-q/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-q/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/amazon-q/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-q/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder/modules/amazon-q/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-q/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder/modules/amazon-q/templates/agent-config.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/amazon-q/templates/agent-config.json.tpl -------------------------------------------------------------------------------- /registry/coder/modules/antigravity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/antigravity/README.md -------------------------------------------------------------------------------- /registry/coder/modules/antigravity/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/antigravity/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/antigravity/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/antigravity/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/aws-region/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aws-region/README.md -------------------------------------------------------------------------------- /registry/coder/modules/aws-region/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aws-region/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/aws-region/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/aws-region/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/azure-region/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/azure-region/README.md -------------------------------------------------------------------------------- /registry/coder/modules/azure-region/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/azure-region/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/azure-region/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/azure-region/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/claude-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/claude-code/README.md -------------------------------------------------------------------------------- /registry/coder/modules/claude-code/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/claude-code/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/claude-code/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/claude-code/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/claude-code/main.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/claude-code/main.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/claude-code/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/claude-code/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder/modules/claude-code/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/claude-code/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder/modules/claude-code/testdata/claude-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/claude-code/testdata/claude-mock.sh -------------------------------------------------------------------------------- /registry/coder/modules/code-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/code-server/README.md -------------------------------------------------------------------------------- /registry/coder/modules/code-server/code-server.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/code-server/code-server.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/code-server/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/code-server/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/code-server/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/code-server/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/code-server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/code-server/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/coder-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/coder-login/README.md -------------------------------------------------------------------------------- /registry/coder/modules/coder-login/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/coder-login/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/coder-login/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/coder-login/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/coder-login/main.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/coder-login/main.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/cursor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/cursor/README.md -------------------------------------------------------------------------------- /registry/coder/modules/cursor/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/cursor/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/cursor/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/cursor/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/devcontainers-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/devcontainers-cli/README.md -------------------------------------------------------------------------------- /registry/coder/modules/devcontainers-cli/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/devcontainers-cli/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/devcontainers-cli/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/devcontainers-cli/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/devcontainers-cli/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/devcontainers-cli/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/dotfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/dotfiles/README.md -------------------------------------------------------------------------------- /registry/coder/modules/dotfiles/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/dotfiles/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/dotfiles/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/dotfiles/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/dotfiles/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/dotfiles/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/filebrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/filebrowser/README.md -------------------------------------------------------------------------------- /registry/coder/modules/filebrowser/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/filebrowser/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/filebrowser/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/filebrowser/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/filebrowser/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/filebrowser/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/fly-region/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/fly-region/README.md -------------------------------------------------------------------------------- /registry/coder/modules/fly-region/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/fly-region/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/fly-region/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/fly-region/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/gcp-region/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/gcp-region/README.md -------------------------------------------------------------------------------- /registry/coder/modules/gcp-region/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/gcp-region/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/gcp-region/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/gcp-region/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/git-clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-clone/README.md -------------------------------------------------------------------------------- /registry/coder/modules/git-clone/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-clone/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/git-clone/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-clone/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/git-clone/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-clone/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/git-commit-signing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-commit-signing/README.md -------------------------------------------------------------------------------- /registry/coder/modules/git-commit-signing/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-commit-signing/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/git-commit-signing/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-commit-signing/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/git-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-config/README.md -------------------------------------------------------------------------------- /registry/coder/modules/git-config/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-config/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/git-config/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/git-config/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/github-upload-public-key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/github-upload-public-key/README.md -------------------------------------------------------------------------------- /registry/coder/modules/github-upload-public-key/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/github-upload-public-key/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/github-upload-public-key/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/github-upload-public-key/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/github-upload-public-key/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/github-upload-public-key/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/goose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/goose/README.md -------------------------------------------------------------------------------- /registry/coder/modules/goose/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/goose/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/goose/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/goose/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/goose/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/goose/scripts/install.sh -------------------------------------------------------------------------------- /registry/coder/modules/goose/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/goose/scripts/start.sh -------------------------------------------------------------------------------- /registry/coder/modules/goose/testdata/agentapi-mock-print-args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/goose/testdata/agentapi-mock-print-args.js -------------------------------------------------------------------------------- /registry/coder/modules/goose/testdata/goose-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/goose/testdata/goose-mock.sh -------------------------------------------------------------------------------- /registry/coder/modules/hcp-vault-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/hcp-vault-secrets/README.md -------------------------------------------------------------------------------- /registry/coder/modules/hcp-vault-secrets/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/hcp-vault-secrets/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains-fleet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains-fleet/README.md -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains-fleet/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains-fleet/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains-fleet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains-fleet/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains-gateway/README.md -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains-gateway/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains-gateway/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains-gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains-gateway/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains/README.md -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains/jetbrains.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains/jetbrains.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/jetbrains/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jetbrains/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-oauth/.npmrc.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-oauth/.npmrc.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-oauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-oauth/README.md -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-oauth/conda.conf.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-oauth/conda.conf.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-oauth/jfrog-oauth.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-oauth/jfrog-oauth.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-oauth/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-oauth/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-oauth/pip.conf.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-oauth/pip.conf.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-oauth/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-oauth/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-oauth/settings.xml.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-oauth/settings.xml.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-token/.npmrc.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-token/.npmrc.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-token/README.md -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-token/conda.conf.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-token/conda.conf.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-token/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-token/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-token/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-token/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-token/pip.conf.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-token/pip.conf.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-token/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-token/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/jfrog-token/settings.xml.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jfrog-token/settings.xml.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/jupyter-notebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jupyter-notebook/README.md -------------------------------------------------------------------------------- /registry/coder/modules/jupyter-notebook/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jupyter-notebook/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/jupyter-notebook/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jupyter-notebook/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/jupyterlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jupyterlab/README.md -------------------------------------------------------------------------------- /registry/coder/modules/jupyterlab/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jupyterlab/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/jupyterlab/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jupyterlab/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/jupyterlab/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/jupyterlab/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/kasmvnc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kasmvnc/README.md -------------------------------------------------------------------------------- /registry/coder/modules/kasmvnc/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kasmvnc/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/kasmvnc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kasmvnc/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/kasmvnc/path_vnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kasmvnc/path_vnc.html -------------------------------------------------------------------------------- /registry/coder/modules/kasmvnc/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kasmvnc/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/kiro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kiro/README.md -------------------------------------------------------------------------------- /registry/coder/modules/kiro/kiro.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kiro/kiro.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/kiro/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kiro/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/kiro/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/kiro/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/local-windows-rdp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/local-windows-rdp/README.md -------------------------------------------------------------------------------- /registry/coder/modules/local-windows-rdp/configure-rdp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/local-windows-rdp/configure-rdp.ps1 -------------------------------------------------------------------------------- /registry/coder/modules/local-windows-rdp/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/local-windows-rdp/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/local-windows-rdp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/local-windows-rdp/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/mux/README.md -------------------------------------------------------------------------------- /registry/coder/modules/mux/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/mux/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/mux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/mux/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/mux/mux.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/mux/mux.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/mux/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/mux/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/personalize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/personalize/README.md -------------------------------------------------------------------------------- /registry/coder/modules/personalize/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/personalize/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/personalize/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/personalize/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/personalize/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/personalize/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/rstudio-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/rstudio-server/README.md -------------------------------------------------------------------------------- /registry/coder/modules/rstudio-server/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/rstudio-server/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/rstudio-server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/rstudio-server/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/slackme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/slackme/README.md -------------------------------------------------------------------------------- /registry/coder/modules/slackme/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/slackme/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/slackme/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/slackme/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/slackme/slackme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/slackme/slackme.sh -------------------------------------------------------------------------------- /registry/coder/modules/vault-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-cli/README.md -------------------------------------------------------------------------------- /registry/coder/modules/vault-cli/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-cli/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/vault-cli/main.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-cli/main.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/modules/vault-cli/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-cli/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/vault-github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-github/README.md -------------------------------------------------------------------------------- /registry/coder/modules/vault-github/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-github/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/vault-github/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-github/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/vault-github/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-github/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/vault-jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-jwt/README.md -------------------------------------------------------------------------------- /registry/coder/modules/vault-jwt/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-jwt/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/vault-jwt/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-jwt/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/vault-jwt/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-jwt/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/vault-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-token/README.md -------------------------------------------------------------------------------- /registry/coder/modules/vault-token/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-token/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/vault-token/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-token/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/vault-token/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vault-token/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/vscode-desktop-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-desktop-core/README.md -------------------------------------------------------------------------------- /registry/coder/modules/vscode-desktop-core/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-desktop-core/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/vscode-desktop-core/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-desktop-core/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/vscode-desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-desktop/README.md -------------------------------------------------------------------------------- /registry/coder/modules/vscode-desktop/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-desktop/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/vscode-desktop/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-desktop/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/vscode-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-web/README.md -------------------------------------------------------------------------------- /registry/coder/modules/vscode-web/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-web/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/vscode-web/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-web/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/vscode-web/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/vscode-web/run.sh -------------------------------------------------------------------------------- /registry/coder/modules/windows-rdp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windows-rdp/README.md -------------------------------------------------------------------------------- /registry/coder/modules/windows-rdp/devolutions-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windows-rdp/devolutions-patch.js -------------------------------------------------------------------------------- /registry/coder/modules/windows-rdp/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windows-rdp/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/windows-rdp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windows-rdp/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/windows-rdp/powershell-installation-script.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windows-rdp/powershell-installation-script.tftpl -------------------------------------------------------------------------------- /registry/coder/modules/windows-rdp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windows-rdp/tsconfig.json -------------------------------------------------------------------------------- /registry/coder/modules/windows-rdp/video-thumbnails/video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windows-rdp/video-thumbnails/video-thumbnail.png -------------------------------------------------------------------------------- /registry/coder/modules/windsurf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windsurf/README.md -------------------------------------------------------------------------------- /registry/coder/modules/windsurf/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windsurf/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/windsurf/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/windsurf/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/zed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/zed/README.md -------------------------------------------------------------------------------- /registry/coder/modules/zed/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/zed/main.test.ts -------------------------------------------------------------------------------- /registry/coder/modules/zed/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/zed/main.tf -------------------------------------------------------------------------------- /registry/coder/modules/zed/zed.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/modules/zed/zed.tftest.hcl -------------------------------------------------------------------------------- /registry/coder/templates/aws-devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-devcontainer/README.md -------------------------------------------------------------------------------- /registry/coder/templates/aws-devcontainer/cloud-init/cloud-config.yaml.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-devcontainer/cloud-init/cloud-config.yaml.tftpl -------------------------------------------------------------------------------- /registry/coder/templates/aws-devcontainer/cloud-init/userdata.sh.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-devcontainer/cloud-init/userdata.sh.tftpl -------------------------------------------------------------------------------- /registry/coder/templates/aws-devcontainer/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-devcontainer/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/aws-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-linux/README.md -------------------------------------------------------------------------------- /registry/coder/templates/aws-linux/cloud-init/cloud-config.yaml.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-linux/cloud-init/cloud-config.yaml.tftpl -------------------------------------------------------------------------------- /registry/coder/templates/aws-linux/cloud-init/userdata.sh.tftpl: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo -u '${linux_user}' sh -c '${init_script}' 3 | -------------------------------------------------------------------------------- /registry/coder/templates/aws-linux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-linux/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/aws-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-windows/README.md -------------------------------------------------------------------------------- /registry/coder/templates/aws-windows/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/aws-windows/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/azure-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/azure-linux/README.md -------------------------------------------------------------------------------- /registry/coder/templates/azure-linux/cloud-init/cloud-config.yaml.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/azure-linux/cloud-init/cloud-config.yaml.tftpl -------------------------------------------------------------------------------- /registry/coder/templates/azure-linux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/azure-linux/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/azure-windows/FirstLogonCommands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/azure-windows/FirstLogonCommands.xml -------------------------------------------------------------------------------- /registry/coder/templates/azure-windows/Initialize.ps1.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/azure-windows/Initialize.ps1.tftpl -------------------------------------------------------------------------------- /registry/coder/templates/azure-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/azure-windows/README.md -------------------------------------------------------------------------------- /registry/coder/templates/azure-windows/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/azure-windows/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/digitalocean-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/digitalocean-linux/README.md -------------------------------------------------------------------------------- /registry/coder/templates/digitalocean-linux/cloud-config.yaml.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/digitalocean-linux/cloud-config.yaml.tftpl -------------------------------------------------------------------------------- /registry/coder/templates/digitalocean-linux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/digitalocean-linux/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/docker-devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/docker-devcontainer/README.md -------------------------------------------------------------------------------- /registry/coder/templates/docker-devcontainer/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/docker-devcontainer/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/docker/README.md -------------------------------------------------------------------------------- /registry/coder/templates/docker/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/docker/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/gcp-devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/gcp-devcontainer/README.md -------------------------------------------------------------------------------- /registry/coder/templates/gcp-devcontainer/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/gcp-devcontainer/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/gcp-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/gcp-linux/README.md -------------------------------------------------------------------------------- /registry/coder/templates/gcp-linux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/gcp-linux/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/gcp-vm-container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/gcp-vm-container/README.md -------------------------------------------------------------------------------- /registry/coder/templates/gcp-vm-container/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/gcp-vm-container/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/gcp-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/gcp-windows/README.md -------------------------------------------------------------------------------- /registry/coder/templates/gcp-windows/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/gcp-windows/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/incus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/incus/README.md -------------------------------------------------------------------------------- /registry/coder/templates/incus/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/incus/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/kubernetes-devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/kubernetes-devcontainer/README.md -------------------------------------------------------------------------------- /registry/coder/templates/kubernetes-devcontainer/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/kubernetes-devcontainer/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/kubernetes-envbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/kubernetes-envbox/README.md -------------------------------------------------------------------------------- /registry/coder/templates/kubernetes-envbox/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/kubernetes-envbox/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/kubernetes/README.md -------------------------------------------------------------------------------- /registry/coder/templates/kubernetes/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/kubernetes/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/nomad-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/nomad-docker/README.md -------------------------------------------------------------------------------- /registry/coder/templates/nomad-docker/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/nomad-docker/main.tf -------------------------------------------------------------------------------- /registry/coder/templates/nomad-docker/workspace.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/nomad-docker/workspace.nomad.tpl -------------------------------------------------------------------------------- /registry/coder/templates/scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/scratch/README.md -------------------------------------------------------------------------------- /registry/coder/templates/scratch/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/coder/templates/scratch/main.tf -------------------------------------------------------------------------------- /registry/cytoshahar/.images/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/cytoshahar/.images/avatar.jpeg -------------------------------------------------------------------------------- /registry/cytoshahar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/cytoshahar/README.md -------------------------------------------------------------------------------- /registry/cytoshahar/modules/positron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/cytoshahar/modules/positron/README.md -------------------------------------------------------------------------------- /registry/cytoshahar/modules/positron/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/cytoshahar/modules/positron/main.test.ts -------------------------------------------------------------------------------- /registry/cytoshahar/modules/positron/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/cytoshahar/modules/positron/main.tf -------------------------------------------------------------------------------- /registry/djarbz/.images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/djarbz/.images/avatar.png -------------------------------------------------------------------------------- /registry/djarbz/.images/copyparty_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/djarbz/.images/copyparty_screenshot.png -------------------------------------------------------------------------------- /registry/djarbz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/djarbz/README.md -------------------------------------------------------------------------------- /registry/djarbz/modules/copyparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/djarbz/modules/copyparty/README.md -------------------------------------------------------------------------------- /registry/djarbz/modules/copyparty/copyparty.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/djarbz/modules/copyparty/copyparty.tftest.hcl -------------------------------------------------------------------------------- /registry/djarbz/modules/copyparty/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/djarbz/modules/copyparty/main.tf -------------------------------------------------------------------------------- /registry/djarbz/modules/copyparty/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/djarbz/modules/copyparty/run.sh -------------------------------------------------------------------------------- /registry/ericpaulsen/.images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/ericpaulsen/.images/avatar.png -------------------------------------------------------------------------------- /registry/ericpaulsen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/ericpaulsen/README.md -------------------------------------------------------------------------------- /registry/ericpaulsen/templates/k8s-username/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/ericpaulsen/templates/k8s-username/README.md -------------------------------------------------------------------------------- /registry/ericpaulsen/templates/k8s-username/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/ericpaulsen/templates/k8s-username/main.tf -------------------------------------------------------------------------------- /registry/ericpaulsen/templates/nfs-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/ericpaulsen/templates/nfs-deployment/README.md -------------------------------------------------------------------------------- /registry/ericpaulsen/templates/nfs-deployment/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/ericpaulsen/templates/nfs-deployment/main.tf -------------------------------------------------------------------------------- /registry/harleylrn/.images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/.images/avatar.png -------------------------------------------------------------------------------- /registry/harleylrn/.images/kiro-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/.images/kiro-cli.png -------------------------------------------------------------------------------- /registry/harleylrn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/README.md -------------------------------------------------------------------------------- /registry/harleylrn/modules/kiro-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/modules/kiro-cli/README.md -------------------------------------------------------------------------------- /registry/harleylrn/modules/kiro-cli/kiro-cli.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/modules/kiro-cli/kiro-cli.tftest.hcl -------------------------------------------------------------------------------- /registry/harleylrn/modules/kiro-cli/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/modules/kiro-cli/main.test.ts -------------------------------------------------------------------------------- /registry/harleylrn/modules/kiro-cli/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/modules/kiro-cli/main.tf -------------------------------------------------------------------------------- /registry/harleylrn/modules/kiro-cli/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/modules/kiro-cli/scripts/install.sh -------------------------------------------------------------------------------- /registry/harleylrn/modules/kiro-cli/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/modules/kiro-cli/scripts/start.sh -------------------------------------------------------------------------------- /registry/harleylrn/modules/kiro-cli/templates/agent-config.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/harleylrn/modules/kiro-cli/templates/agent-config.json.tpl -------------------------------------------------------------------------------- /registry/mavrickrishi/.images/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/.images/avatar.jpeg -------------------------------------------------------------------------------- /registry/mavrickrishi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/README.md -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/auto-start-dev-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/auto-start-dev-server/README.md -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/auto-start-dev-server/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/auto-start-dev-server/main.test.ts -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/auto-start-dev-server/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/auto-start-dev-server/main.tf -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/auto-start-dev-server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/auto-start-dev-server/run.sh -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/aws-ami-snapshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/aws-ami-snapshot/README.md -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/aws-ami-snapshot/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/aws-ami-snapshot/main.test.ts -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/aws-ami-snapshot/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/aws-ami-snapshot/main.tf -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/nexus-repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/nexus-repository/README.md -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/nexus-repository/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/nexus-repository/main.test.ts -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/nexus-repository/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/nexus-repository/main.tf -------------------------------------------------------------------------------- /registry/mavrickrishi/modules/nexus-repository/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/mavrickrishi/modules/nexus-repository/run.sh -------------------------------------------------------------------------------- /registry/nataindata/.images/airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/nataindata/.images/airflow.png -------------------------------------------------------------------------------- /registry/nataindata/.images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/nataindata/.images/avatar.png -------------------------------------------------------------------------------- /registry/nataindata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/nataindata/README.md -------------------------------------------------------------------------------- /registry/nataindata/modules/apache-airflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/nataindata/modules/apache-airflow/README.md -------------------------------------------------------------------------------- /registry/nataindata/modules/apache-airflow/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/nataindata/modules/apache-airflow/main.tf -------------------------------------------------------------------------------- /registry/nataindata/modules/apache-airflow/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/nataindata/modules/apache-airflow/run.sh -------------------------------------------------------------------------------- /registry/sharkymark/.images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/sharkymark/.images/avatar.png -------------------------------------------------------------------------------- /registry/sharkymark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/sharkymark/README.md -------------------------------------------------------------------------------- /registry/sharkymark/templates/docker-claude/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/sharkymark/templates/docker-claude/README.md -------------------------------------------------------------------------------- /registry/sharkymark/templates/docker-claude/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/sharkymark/templates/docker-claude/main.tf -------------------------------------------------------------------------------- /registry/thezoker/.images/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/thezoker/.images/avatar.jpeg -------------------------------------------------------------------------------- /registry/thezoker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/thezoker/README.md -------------------------------------------------------------------------------- /registry/thezoker/modules/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/thezoker/modules/nodejs/README.md -------------------------------------------------------------------------------- /registry/thezoker/modules/nodejs/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/thezoker/modules/nodejs/main.test.ts -------------------------------------------------------------------------------- /registry/thezoker/modules/nodejs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/thezoker/modules/nodejs/main.tf -------------------------------------------------------------------------------- /registry/thezoker/modules/nodejs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/thezoker/modules/nodejs/run.sh -------------------------------------------------------------------------------- /registry/umair/.images/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/.images/avatar.jpeg -------------------------------------------------------------------------------- /registry/umair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/README.md -------------------------------------------------------------------------------- /registry/umair/modules/digitalocean-region/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/modules/digitalocean-region/README.md -------------------------------------------------------------------------------- /registry/umair/modules/digitalocean-region/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/modules/digitalocean-region/main.test.ts -------------------------------------------------------------------------------- /registry/umair/modules/digitalocean-region/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/modules/digitalocean-region/main.tf -------------------------------------------------------------------------------- /registry/umair/templates/linode-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/templates/linode-vm/README.md -------------------------------------------------------------------------------- /registry/umair/templates/linode-vm/cloud-init/cloud-config.yaml.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/templates/linode-vm/cloud-init/cloud-config.yaml.tftpl -------------------------------------------------------------------------------- /registry/umair/templates/linode-vm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/templates/linode-vm/main.tf -------------------------------------------------------------------------------- /registry/umair/templates/proxmox-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/templates/proxmox-vm/README.md -------------------------------------------------------------------------------- /registry/umair/templates/proxmox-vm/cloud-init/user-data.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/templates/proxmox-vm/cloud-init/user-data.tftpl -------------------------------------------------------------------------------- /registry/umair/templates/proxmox-vm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/umair/templates/proxmox-vm/main.tf -------------------------------------------------------------------------------- /registry/whizus/.images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/.images/avatar.png -------------------------------------------------------------------------------- /registry/whizus/.images/exoscale-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/.images/exoscale-custom.png -------------------------------------------------------------------------------- /registry/whizus/.images/exoscale-exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/.images/exoscale-exclude.png -------------------------------------------------------------------------------- /registry/whizus/.images/exoscale-instance-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/.images/exoscale-instance-custom.png -------------------------------------------------------------------------------- /registry/whizus/.images/exoscale-instance-exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/.images/exoscale-instance-exclude.png -------------------------------------------------------------------------------- /registry/whizus/.images/exoscale-instance-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/.images/exoscale-instance-types.png -------------------------------------------------------------------------------- /registry/whizus/.images/exoscale-zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/.images/exoscale-zones.png -------------------------------------------------------------------------------- /registry/whizus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/README.md -------------------------------------------------------------------------------- /registry/whizus/modules/exoscale-instance-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/modules/exoscale-instance-type/README.md -------------------------------------------------------------------------------- /registry/whizus/modules/exoscale-instance-type/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/modules/exoscale-instance-type/main.test.ts -------------------------------------------------------------------------------- /registry/whizus/modules/exoscale-instance-type/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/modules/exoscale-instance-type/main.tf -------------------------------------------------------------------------------- /registry/whizus/modules/exoscale-zone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/modules/exoscale-zone/README.md -------------------------------------------------------------------------------- /registry/whizus/modules/exoscale-zone/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/modules/exoscale-zone/main.test.ts -------------------------------------------------------------------------------- /registry/whizus/modules/exoscale-zone/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/registry/whizus/modules/exoscale-zone/main.tf -------------------------------------------------------------------------------- /scripts/new_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/new_module.sh -------------------------------------------------------------------------------- /scripts/new_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/new_template.sh -------------------------------------------------------------------------------- /scripts/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/rules.go -------------------------------------------------------------------------------- /scripts/shellcheck_validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/shellcheck_validate.sh -------------------------------------------------------------------------------- /scripts/tag_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/tag_release.sh -------------------------------------------------------------------------------- /scripts/terraform_test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/terraform_test_all.sh -------------------------------------------------------------------------------- /scripts/terraform_validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/terraform_validate.sh -------------------------------------------------------------------------------- /scripts/ts_test_auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/ts_test_auto.sh -------------------------------------------------------------------------------- /scripts/validate_set_u_order.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/scripts/validate_set_u_order.sh -------------------------------------------------------------------------------- /setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/setup.ts -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/test/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/registry/HEAD/tsconfig.json --------------------------------------------------------------------------------