Skip to content
Open
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-labs/modules/auggie/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Run Auggie CLI in your workspace to access Augment's AI coding assistant with ad
```tf
module "auggie" {
source = "registry.coder.com/coder-labs/auggie/coder"
version = "0.2.1"
version = "0.3.0"
agent_id = coder_agent.example.id
folder = "/home/coder/project"
}
Expand Down Expand Up @@ -47,7 +47,7 @@ module "coder-login" {

module "auggie" {
source = "registry.coder.com/coder-labs/auggie/coder"
version = "0.2.1"
version = "0.3.0"
agent_id = coder_agent.example.id
folder = "/home/coder/project"

Expand Down Expand Up @@ -103,7 +103,7 @@ EOF
```tf
module "auggie" {
source = "registry.coder.com/coder-labs/auggie/coder"
version = "0.2.1"
version = "0.3.0"
agent_id = coder_agent.example.id
folder = "/home/coder/project"

Expand Down
10 changes: 7 additions & 3 deletions registry/coder-labs/modules/auggie/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
coder = {
source = "coder/coder"
version = ">= 2.7"
version = ">= 2.12"
}
}
}
Expand Down Expand Up @@ -179,7 +179,7 @@ locals {

module "agentapi" {
source = "registry.coder.com/coder/agentapi/coder"
version = "1.2.0"
version = "2.0.0"

agent_id = var.agent_id
folder = local.folder
Expand Down Expand Up @@ -229,4 +229,8 @@ module "agentapi" {
ARG_MCP_CONFIG='${var.mcp != null ? base64encode(replace(var.mcp, "'", "'\\''")) : ""}' \
/tmp/install.sh
EOT
}
}

output "task_app_id" {
value = module.agentapi.task_app_id
}