Skip to content

Commit 4c17713

Browse files
refactor(coder-labs/auggie): support terraform provider coder v2.12.0
1 parent 797624f commit 4c17713

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

registry/coder-labs/modules/auggie/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run Auggie CLI in your workspace to access Augment's AI coding assistant with ad
1313
```tf
1414
module "auggie" {
1515
source = "registry.coder.com/coder-labs/auggie/coder"
16-
version = "0.2.1"
16+
version = "0.3.0"
1717
agent_id = coder_agent.example.id
1818
folder = "/home/coder/project"
1919
}
@@ -47,7 +47,7 @@ module "coder-login" {
4747
4848
module "auggie" {
4949
source = "registry.coder.com/coder-labs/auggie/coder"
50-
version = "0.2.1"
50+
version = "0.3.0"
5151
agent_id = coder_agent.example.id
5252
folder = "/home/coder/project"
5353
@@ -103,7 +103,7 @@ EOF
103103
```tf
104104
module "auggie" {
105105
source = "registry.coder.com/coder-labs/auggie/coder"
106-
version = "0.2.1"
106+
version = "0.3.0"
107107
agent_id = coder_agent.example.id
108108
folder = "/home/coder/project"
109109

registry/coder-labs/modules/auggie/main.tf

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
coder = {
66
source = "coder/coder"
7-
version = ">= 2.7"
7+
version = "= 2.12.0-pre0"
88
}
99
}
1010
}
@@ -179,7 +179,7 @@ locals {
179179

180180
module "agentapi" {
181181
source = "registry.coder.com/coder/agentapi/coder"
182-
version = "1.2.0"
182+
version = "2.0.0"
183183

184184
agent_id = var.agent_id
185185
folder = local.folder
@@ -229,4 +229,8 @@ module "agentapi" {
229229
ARG_MCP_CONFIG='${var.mcp != null ? base64encode(replace(var.mcp, "'", "'\\''")) : ""}' \
230230
/tmp/install.sh
231231
EOT
232-
}
232+
}
233+
234+
output "task_app_id" {
235+
value = module.agentapi.task_app_id
236+
}

0 commit comments

Comments
 (0)