8000 fix(coder/modules/goose): update default values for Goose provider an… · coder/registry@8da6887 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8da6887

Browse files
fix(coder/modules/goose): update default values for Goose provider and model variables to empty strings (#106)
- Changed default values from null to empty strings for `experiment_goose_provider` and `experiment_goose_model` variables in main.tf to ensure compatibility and avoid null interpolation issues.
1 parent 0149b34 commit 8da6887

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

registry/coder/modules/goose/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Run the [Goose](https://block.github.io/goose/) agent in your workspace to gener
1414
```tf
1515
module "goose" {
1616
source = "registry.coder.com/coder/goose/coder"
17-
version = "1.1.0"
17+
version = "1.1.1"
1818
agent_id = coder_agent.example.id
1919
folder = "/home/coder"
2020
install_goose = true
@@ -90,7 +90,7 @@ resource "coder_agent" "main" {
9090
module "goose" {
9191
count = data.coder_workspace.me.start_count
9292
source = "registry.coder.com/coder/goose/coder"
93-
version = "1.1.0"
93+
version = "1.1.1"
9494
agent_id = coder_agent.example.id
9595
folder = "/home/coder"
9696
install_goose = true
@@ -148,7 +148,7 @@ Run Goose as a standalone app in your workspace. This will install Goose and run
148148
```tf
149149
module "goose" {
150150
source = "registry.coder.com/coder/goose/coder"
151-
version = "1.1.0"
151+
version = "1.1.1"
152152
agent_id = coder_agent.example.id
153153
folder = "/home/coder"
154154
install_goose = true

registry/coder/modules/goose/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ variable "experiment_auto_configure" {
6969
variable "experiment_goose_provider" {
7070
type = string
7171
description = "The provider to use for Goose (e.g., anthropic)."
72-
default = null
72+
default = ""
7373
}
7474

7575
variable "experiment_goose_model" {
7676
type = string
7777
description = "The model to use for Goose (e.g., claude-3-5-sonnet-latest)."
78-
default = null
78+
default = ""
7979
}
8080

8181
variable "experiment_pre_install_script" {

0 commit comments

Comments
 (0)
0