Skip to content

Commit a10d5fa

Browse files
authored
fix(coder/modules/claude-code): update terraform required version to >= 1.9 (#688)
## Description - Update terraform version for claude-code module. - Update coder version required in readme ## Type of Change - [ ] New module - [ ] New template - [x] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Module Information <!-- Delete this section if not applicable --> **Path:** `registry/coder/modules/claude-code` **New version:** `v4.7.2` **Breaking change:** [ ] Yes [x] No ## Testing & Validation - [x] Tests pass (`bun test`) - [x] Code formatted (`bun fmt`) - [x] Changes tested locally ## Related Issues <!-- Link related issues or write "None" if not applicable -->
1 parent 360b3cd commit a10d5fa

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

registry/coder/modules/claude-code/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run the [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude
1313
```tf
1414
module "claude-code" {
1515
source = "registry.coder.com/coder/claude-code/coder"
16-
version = "4.7.1"
16+
version = "4.7.2"
1717
agent_id = coder_agent.main.id
1818
workdir = "/home/coder/project"
1919
claude_api_key = "xxxx-xxxxx-xxxx"
@@ -47,7 +47,7 @@ By default, when `enable_boundary = true`, the module uses `coder boundary` subc
4747
```tf
4848
module "claude-code" {
4949
source = "registry.coder.com/coder/claude-code/coder"
50-
version = "4.7.1"
50+
version = "4.7.2"
5151
agent_id = coder_agent.main.id
5252
workdir = "/home/coder/project"
5353
enable_boundary = true
@@ -59,7 +59,7 @@ module "claude-code" {
5959
6060
### Usage with AI Bridge
6161

62-
[AI Bridge](https://coder.com/docs/ai-coder/ai-bridge) is a Premium Coder feature that provides centralized LLM proxy management. To use AI Bridge, set `enable_aibridge = true`.
62+
[AI Bridge](https://coder.com/docs/ai-coder/ai-bridge) is a Premium Coder feature that provides centralized LLM proxy management. To use AI Bridge, set `enable_aibridge = true`. Requires Coder version >= 2.29.0.
6363

6464
For tasks integration with AI Bridge, add `enable_aibridge = true` to the [Usage with Tasks](#usage-with-tasks) example below.
6565

@@ -68,7 +68,7 @@ For tasks integration with AI Bridge, add `enable_aibridge = true` to the [Usage
6868
```tf
6969
module "claude-code" {
7070
source = "registry.coder.com/coder/claude-code/coder"
71-
version = "4.7.1"
71+
version = "4.7.2"
7272
agent_id = coder_agent.main.id
7373
workdir = "/home/coder/project"
7474
enable_aibridge = true
@@ -97,7 +97,7 @@ data "coder_task" "me" {}
9797
9898
module "claude-code" {
9999
source = "registry.coder.com/coder/claude-code/coder"
100-
version = "4.7.1"
100+
version = "4.7.2"
101101
agent_id = coder_agent.main.id
102102
workdir = "/home/coder/project"
103103
claude_api_key = "xxxx-xxxxx-xxxx"
@@ -121,7 +121,7 @@ This example shows additional configuration options for version pinning, custom
121121
```tf
122122
module "claude-code" {
123123
source = "registry.coder.com/coder/claude-code/coder"
124-
version = "4.7.1"
124+
version = "4.7.2"
125125
agent_id = coder_agent.main.id
126126
workdir = "/home/coder/project"
127127
@@ -177,7 +177,7 @@ Run and configure Claude Code as a standalone CLI in your workspace.
177177
```tf
178178
module "claude-code" {
179179
source = "registry.coder.com/coder/claude-code/coder"
180-
version = "4.7.1"
180+
version = "4.7.2"
181181
agent_id = coder_agent.main.id
182182
workdir = "/home/coder/project"
183183
install_claude_code = true
@@ -199,7 +199,7 @@ variable "claude_code_oauth_token" {
199199
200200
module "claude-code" {
201201
source = "registry.coder.com/coder/claude-code/coder"
202-
version = "4.7.1"
202+
version = "4.7.2"
203203
agent_id = coder_agent.main.id
204204
workdir = "/home/coder/project"
205205
claude_code_oauth_token = var.claude_code_oauth_token
@@ -272,7 +272,7 @@ resource "coder_env" "bedrock_api_key" {
272272
273273
module "claude-code" {
274274
source = "registry.coder.com/coder/claude-code/coder"
275-
version = "4.7.1"
275+
version = "4.7.2"
276276
agent_id = coder_agent.main.id
277277
workdir = "/home/coder/project"
278278
model = "global.anthropic.claude-sonnet-4-5-20250929-v1:0"
@@ -329,7 +329,7 @@ resource "coder_env" "google_application_credentials" {
329329
330330
module "claude-code" {
331331
source = "registry.coder.com/coder/claude-code/coder"
332-
version = "4.7.1"
332+
version = "4.7.2"
333333
agent_id = coder_agent.main.id
334334
workdir = "/home/coder/project"
335335
model = "claude-sonnet-4@20250514"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 1.0"
2+
required_version = ">= 1.9"
33

44
required_providers {
55
coder = {

0 commit comments

Comments
 (0)