-
Notifications
You must be signed in to change notification settings - Fork 73
docs(tasks-docker): claude code subscription usage guide added as comment in the template. #358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(tasks-docker): claude code subscription usage guide added as comment in the template. #358
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Can you make sure to coordinate with @bcpeinhardt on coder/coder#19718? We're adding the Docker Tasks template to the recommended list and I know that there's a disconnect with changes of one file to the other, so wanting to make sure that we've got in sync copies!
There is another refactor going on in #423. @david-fraley can you review that. |
# Usage with Claude Code Subscription | ||
# Uncomment options below and comment out the above `anthropic_api_key` variable | ||
# variable "claude_code_oauth_token" { | ||
# type = string | ||
# description = "Generate one using `claude setup-token` command (required if use_claude_code_auth is true)" | ||
# sensitive = true | ||
# } | ||
# | ||
# # Create the OAuth token environment variable | ||
# resource "coder_env" "claude_code_oauth_token" { | ||
# agent_id = coder_agent.main.id | ||
# name = "CLAUDE_CODE_OAUTH_TOKEN" | ||
# value = var.claude_code_oauth_token | ||
# } | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's also mention this in the readme of the module too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@iamriajul can you update that as per #402
Closing, as completed in #402. |
Description
Solves: https://discord.com/channels/747933592273027093/1404654368745193492
Type of Change
Testing & Validation
bun test
)bun run fmt
)Related Issues