Skip to content

Commit 6676679

Browse files
committed
feat: add some new variables
1 parent 20d115a commit 6676679

File tree

1 file changed

+0
-14
lines changed
  • registry/coder/modules/claude-code

1 file changed

+0
-14
lines changed

registry/coder/modules/claude-code/main.tf

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -186,26 +186,12 @@ variable "system_prompt" {
186186
default = "Send a task status update to notify the user that you are ready for input, and then wait for user input."
187187
}
188188

189-
variable "claude_config_path" {
190-
type = string
191-
description = "The path to the Claude config file."
192-
default = "$HOME/.claude.json"
193-
}
194-
195189
variable "claude_md_path" {
196190
type = string
197191
description = "The path to CLAUDE.md."
198192
default = "$HOME/.claude/CLAUDE.md"
199193
}
200194

201-
resource "coder_env" "claude_code_config_path" {
202-
count = var.claude_config_path == "" ? 0 : 1
203-
204-
agent_id = var.agent_id
205-
name = "CODER_MCP_CLAUDE_CONFIG_PATH"
206-
value = var.claude_config_path
207-
}
208-
209195
resource "coder_env" "claude_code_md_path" {
210196
count = var.claude_md_path == "" ? 0 : 1
211197

0 commit comments

Comments
 (0)