Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions registry/coder/modules/antigravity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
module "antigravity" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/antigravity/coder"
version = "1.0.1"
version = "1.0.2"
agent_id = coder_agent.example.id
}
```
Expand All @@ -29,7 +29,7 @@ module "antigravity" {
module "antigravity" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/antigravity/coder"
version = "1.0.1"
version = "1.0.2"
agent_id = coder_agent.example.id
folder = "/home/coder/project"
}
Expand All @@ -45,7 +45,7 @@ The following example configures Antigravity to use the GitHub MCP server with a
module "antigravity" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/antigravity/coder"
version = "1.0.1"
version = "1.0.2"
agent_id = coder_agent.example.id
folder = "/home/coder/project"
mcp = jsonencode({
Expand Down
2 changes: 2 additions & 0 deletions registry/coder/modules/antigravity/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ locals {
}

module "vscode-desktop-core" {
count = data.coder_workspace.me.start_count

source = "registry.coder.com/coder/vscode-desktop-core/coder"
version = "1.0.2"

Expand Down
6 changes: 3 additions & 3 deletions registry/coder/modules/cursor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
module "cursor" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/cursor/coder"
version = "1.4.1"
version = "1.4.2"
agent_id = coder_agent.main.id
}
```
Expand All @@ -29,7 +29,7 @@ module "cursor" {
module "cursor" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/cursor/coder"
version = "1.4.1"
version = "1.4.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
}
Expand All @@ -45,7 +45,7 @@ The following example configures Cursor to use the GitHub MCP server with authen
module "cursor" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/cursor/coder"
version = "1.4.1"
version = "1.4.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
mcp = jsonencode({
Expand Down
2 changes: 2 additions & 0 deletions registry/coder/modules/cursor/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ locals {
}

module "vscode-desktop-core" {
count = data.coder_workspace.me.start_count

source = "registry.coder.com/coder/vscode-desktop-core/coder"
version = "1.0.2"

Expand Down
6 changes: 3 additions & 3 deletions registry/coder/modules/kiro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
module "kiro" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/kiro/coder"
version = "1.2.1"
version = "1.2.2"
agent_id = coder_agent.main.id
}
```
Expand All @@ -31,7 +31,7 @@ module "kiro" {
module "kiro" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/kiro/coder"
version = "1.2.1"
version = "1.2.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
}
Expand All @@ -47,7 +47,7 @@ The following example configures Kiro to use the GitHub MCP server with authenti
module "kiro" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/kiro/coder"
version = "1.2.1"
version = "1.2.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
mcp = jsonencode({
Expand Down
2 changes: 2 additions & 0 deletions registry/coder/modules/kiro/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ locals {
}

module "vscode-desktop-core" {
count = data.coder_workspace.me.start_count

source = "registry.coder.com/coder/vscode-desktop-core/coder"
version = "1.0.2"

Expand Down
4 changes: 3 additions & 1 deletion registry/coder/modules/vscode-desktop-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ The VSCode Desktop Core module is a building block for modules that need to expo

```tf
module "vscode-desktop-core" {
count = data.coder_workspace.me.start_count

source = "registry.coder.com/coder/vscode-desktop-core/coder"
version = "1.0.2"
version = "1.0.3"

agent_id = var.agent_id

Expand Down
4 changes: 2 additions & 2 deletions registry/coder/modules/vscode-desktop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
module "vscode" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/vscode-desktop/coder"
version = "1.2.1"
version = "1.2.2"
agent_id = coder_agent.main.id
}
```
Expand All @@ -29,7 +29,7 @@ module "vscode" {
module "vscode" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/vscode-desktop/coder"
version = "1.2.1"
version = "1.2.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
}
Expand Down
2 changes: 2 additions & 0 deletions registry/coder/modules/vscode-desktop/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ variable "group" {
}

module "vscode-desktop-core" {
count = data.coder_workspace.me.start_count

source = "registry.coder.com/coder/vscode-desktop-core/coder"
version = "1.0.2"

Expand Down
6 changes: 3 additions & 3 deletions registry/coder/modules/windsurf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
module "windsurf" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/windsurf/coder"
version = "1.3.1"
version = "1.3.2"
agent_id = coder_agent.main.id
}
```
Expand All @@ -29,7 +29,7 @@ module "windsurf" {
module "windsurf" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/windsurf/coder"
version = "1.3.1"
version = "1.3.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
}
Expand All @@ -45,7 +45,7 @@ The following example configures Windsurf to use the GitHub MCP server with auth
module "windsurf" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/windsurf/coder"
version = "1.3.1"
version = "1.3.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
mcp = jsonencode({
Expand Down
2 changes: 2 additions & 0 deletions registry/coder/modules/windsurf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ locals {
}

module "vscode-desktop-core" {
count = data.coder_workspace.me.start_count

source = "registry.coder.com/coder/vscode-desktop-core/coder"
version = "1.0.2"

Expand Down
4 changes: 2 additions & 2 deletions registry/cytoshahar/modules/positron/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
module "positron" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/cytoshahar/positron/coder"
version = "1.0.2"
version = "1.0.3"
agent_id = coder_agent.main.id
}
```
Expand All @@ -29,7 +29,7 @@ module "positron" {
module "positron" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/cytoshahar/positron/coder"
version = "1.0.2"
version = "1.0.3"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
}
Expand Down
2 changes: 2 additions & 0 deletions registry/cytoshahar/modules/positron/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ data "coder_workspace" "me" {}
data "coder_workspace_owner" "me" {}

module "vscode-desktop-core" {
count = data.coder_workspace.me.start_count

source = "registry.coder.com/coder/vscode-desktop-core/coder"
version = "1.0.2"

Expand Down
Loading