Skip to content

Commit 5924646

Browse files
chore: remove unecessary variables in codex module examples since they were just expressing the defaults
1 parent f01ea69 commit 5924646

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

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

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,12 @@ module "codex" {
3131

3232
```tf
3333
module "codex" {
34-
count = data.coder_workspace.me.start_count
35-
source = "registry.coder.com/coder-labs/codex/coder"
36-
version = "1.1.0"
37-
agent_id = coder_agent.example.id
38-
openai_api_key = "..."
39-
install_codex = true
40-
codex_version = "latest"
41-
folder = "/home/coder/project"
42-
codex_system_prompt = "You are a helpful coding assistant. Start every response with `Codex says:`"
34+
count = data.coder_workspace.me.start_count
35+
source = "registry.coder.com/coder-labs/codex/coder"
36+
version = "1.1.0"
37+
agent_id = coder_agent.example.id
38+
openai_api_key = "..."
39+
folder = "/home/coder/project"
4340
}
4441
```
4542

0 commit comments

Comments
 (0)