Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions registry/coder/modules/goose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Run the [Goose](https://block.github.io/goose/) agent in your workspace to gener
```tf
module "goose" {
source = "registry.coder.com/coder/goose/coder"
version = "2.2.1"
version = "3.0.0"
agent_id = coder_agent.example.id
folder = "/home/coder"
install_goose = true
Expand Down Expand Up @@ -79,7 +79,7 @@ resource "coder_agent" "main" {
module "goose" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/goose/coder"
version = "2.2.1"
version = "3.0.0"
agent_id = coder_agent.example.id
folder = "/home/coder"
install_goose = true
Expand Down
8 changes: 6 additions & 2 deletions registry/coder/modules/goose/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 @@ -140,7 +140,7 @@ EOT

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

agent_id = var.agent_id
web_app_slug = local.app_slug
Expand Down Expand Up @@ -174,3 +174,7 @@ module "agentapi" {
/tmp/install.sh
EOT
}

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