Hamed
Hamed
CCoder.com
Created by Hamed on 4/17/2025 in #help
The provider coder/coder does not support data source "coder_git_auth".
now i see that the docs on the website are correct, only the git clone module to be updated https://registry.coder.com/modules/git-clone
8 replies
CCoder.com
Created by Hamed on 4/17/2025 in #help
The provider coder/coder does not support data source "coder_git_auth".
awesome, thanks for the quick help 🙇
8 replies
CCoder.com
Created by Hamed on 4/14/2025 in #help
can't find "write coder on coder" template
No description
12 replies
CCoder.com
Created by Hamed on 4/14/2025 in #help
can't find "write coder on coder" template
when i want to push this template it asks (rightly) for the missing api key var, 1. how to provide it in the cli command 2. is there a way not to provide it here but in workspace creation time (through cli or rest api e.g.)
variable "anthropic_api_key" {
type = string
description = "The Anthropic API key"
sensitive = true
}

module "coder-login" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/coder-login/coder"
version = "1.0.30"
agent_id = coder_agent.example.id
}

data "coder_parameter" "ai_prompt" {
type = "string"
name = "AI Prompt"
default = ""
description = "Write a prompt for Claude Code"
mutable = true
}


module "claude-code" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/claude-code/coder"
version = "1.0.31"
agent_id = coder_agent.example.id
folder = "/home/coder"
install_claude_code = true
claude_code_version = "0.2.57"

# Enable experimental features
experiment_use_screen = true
experiment_report_tasks = true
}
variable "anthropic_api_key" {
type = string
description = "The Anthropic API key"
sensitive = true
}

module "coder-login" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/coder-login/coder"
version = "1.0.30"
agent_id = coder_agent.example.id
}

data "coder_parameter" "ai_prompt" {
type = "string"
name = "AI Prompt"
default = ""
description = "Write a prompt for Claude Code"
mutable = true
}


module "claude-code" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/claude-code/coder"
version = "1.0.31"
agent_id = coder_agent.example.id
folder = "/home/coder"
install_claude_code = true
claude_code_version = "0.2.57"

# Enable experimental features
experiment_use_screen = true
experiment_report_tasks = true
}
12 replies
CCoder.com
Created by Hamed on 4/14/2025 in #help
can't find "write coder on coder" template
oh gotta, so creating a base template and adding it is the way
12 replies