File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
registry/coder-labs/modules/auggie Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Run Auggie CLI in your workspace to access Augment's AI coding assistant with ad
1313``` tf
1414module "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
4848module "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
103103``` tf
104104module "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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 required_providers {
55 coder = {
66 source = " coder/coder"
7- version = " >= 2.7 "
7+ version = " >= 2.12 "
88 }
99 }
1010}
@@ -179,7 +179,7 @@ locals {
179179
180180module "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+ }
You can’t perform that action at this time.
0 commit comments