Skip to content

Commit 2d8cfbb

Browse files
committed
versions!
1 parent a460fba commit 2d8cfbb

File tree

34 files changed

+75
-76
lines changed

34 files changed

+75
-76
lines changed

examples/modules/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tags: [helper]
1515
module "MODULE_NAME" {
1616
count = data.coder_workspace.me.start_count
1717
source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
18-
version = "1.0.2"
18+
version = "1.0.0"
1919
}
2020
```
2121

@@ -31,7 +31,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
3131
module "MODULE_NAME" {
3232
count = data.coder_workspace.me.start_count
3333
source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
34-
version = "1.0.2"
34+
version = "1.0.0"
3535
agent_id = coder_agent.example.id
3636
extensions = [
3737
"dracula-theme.theme-dracula"
@@ -49,7 +49,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
4949
module "MODULE_NAME" {
5050
count = data.coder_workspace.me.start_count
5151
source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
52-
version = "1.0.2"
52+
version = "1.0.0"
5353
agent_id = coder_agent.example.id
5454
extensions = ["dracula-theme.theme-dracula"]
5555
settings = {
@@ -65,7 +65,7 @@ Run code-server in the background, don't fetch it from GitHub:
6565
```tf
6666
module "MODULE_NAME" {
6767
source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
68-
version = "1.0.2"
68+
version = "1.0.0"
6969
agent_id = coder_agent.example.id
7070
offline = true
7171
}

examples/modules/main.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
coder = {
66
source = "coder/coder"
7-
version = ">= 0.17"
7+
version = ">= 2.5"
88
}
99
}
1010
}
@@ -105,4 +105,3 @@ data "coder_parameter" "MODULE_NAME" {
105105
}
106106
}
107107
}
108-

registry/coder/modules/aider/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Run [Aider](https://aider.chat) AI pair programming in your workspace. This modu
1414
```tf
1515
module "aider" {
1616
source = "registry.coder.com/coder/aider/coder"
17-
version = "1.0.1"
17+
version = "1.1.0"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -69,7 +69,7 @@ variable "anthropic_api_key" {
6969
module "aider" {
7070
count = data.coder_workspace.me.start_count
7171
source = "registry.coder.com/coder/aider/coder"
72-
version = "1.0.1"
72+
version = "1.1.0"
7373
agent_id = coder_agent.example.id
7474
ai_api_key = var.anthropic_api_key
7575
}
@@ -94,7 +94,7 @@ variable "openai_api_key" {
9494
module "aider" {
9595
count = data.coder_workspace.me.start_count
9696
source = "registry.coder.com/coder/aider/coder"
97-
version = "1.0.1"
97+
version = "1.1.0"
9898
agent_id = coder_agent.example.id
9999
use_tmux = true
100100
ai_provider = "openai"
@@ -115,7 +115,7 @@ variable "custom_api_key" {
115115
module "aider" {
116116
count = data.coder_workspace.me.start_count
117117
source = "registry.coder.com/coder/aider/coder"
118-
version = "1.0.1"
118+
version = "1.1.0"
119119
agent_id = coder_agent.example.id
120120
ai_provider = "custom"
121121
custom_env_var_name = "MY_CUSTOM_API_KEY"
@@ -132,7 +132,7 @@ You can extend Aider's capabilities by adding custom extensions:
132132
module "aider" {
133133
count = data.coder_workspace.me.start_count
134134
source = "registry.coder.com/coder/aider/coder"
135-
version = "1.0.1"
135+
version = "1.1.0"
136136
agent_id = coder_agent.example.id
137137
ai_api_key = var.anthropic_api_key
138138
@@ -189,7 +189,7 @@ Here's a complete example:
189189
module "coder-login" {
190190
count = data.coder_workspace.me.start_count
191191
source = "registry.coder.com/modules/coder-login/coder"
192-
version = "1.0.15"
192+
version = "1.1.05"
193193
agent_id = coder_agent.example.id
194194
}
195195
@@ -211,7 +211,7 @@ data "coder_parameter" "ai_prompt" {
211211
module "aider" {
212212
count = data.coder_workspace.me.start_count
213213
source = "registry.coder.com/coder/aider/coder"
214-
version = "1.0.1"
214+
version = "1.1.0"
215215
agent_id = coder_agent.example.id
216216
ai_api_key = var.anthropic_api_key
217217
task_prompt = data.coder_parameter.ai_prompt.value

registry/coder/modules/aider/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
coder = {
66
source = "coder/coder"
7-
version = ">= 0.17"
7+
version = ">= 2.5"
88
}
99
}
1010
}

registry/coder/modules/amazon-dcv-windows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Enable DCV Server and Web Client on Windows workspaces.
1919
module "dcv" {
2020
count = data.coder_workspace.me.start_count
2121
source = "registry.coder.com/coder/amazon-dcv-windows/coder"
22-
version = "1.0.24"
22+
version = "1.1.0"
2323
agent_id = resource.coder_agent.main.id
2424
}
2525

registry/coder/modules/amazon-dcv-windows/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
coder = {
66
source = "coder/coder"
7-
version = ">= 0.17"
7+
version = ">= 2.5"
88
}
99
}
1010
}

registry/coder/modules/amazon-q/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Run [Amazon Q](https://aws.amazon.com/q/) in your workspace to access Amazon's A
1414
```tf
1515
module "amazon-q" {
1616
source = "registry.coder.com/coder/amazon-q/coder"
17-
version = "1.0.1"
17+
version = "1.1.0"
1818
agent_id = coder_agent.example.id
1919
# Required: see below for how to generate
2020
experiment_auth_tarball = var.amazon_q_auth_tarball
@@ -82,7 +82,7 @@ module "amazon-q" {
8282
```tf
8383
module "amazon-q" {
8484
source = "registry.coder.com/coder/amazon-q/coder"
85-
version = "1.0.1"
85+
version = "1.1.0"
8686
agent_id = coder_agent.example.id
8787
experiment_auth_tarball = var.amazon_q_auth_tarball
8888
experiment_use_tmux = true
@@ -94,7 +94,7 @@ module "amazon-q" {
9494
```tf
9595
module "amazon-q" {
9696
source = "registry.coder.com/coder/amazon-q/coder"
97-
version = "1.0.1"
97+
version = "1.1.0"
9898
agent_id = coder_agent.example.id
9999
experiment_auth_tarball = var.amazon_q_auth_tarball
100100
experiment_report_tasks = true
@@ -106,7 +106,7 @@ module "amazon-q" {
106106
```tf
107107
module "amazon-q" {
108108
source = "registry.coder.com/coder/amazon-q/coder"
109-
version = "1.0.1"
109+
version = "1.1.0"
110110
agent_id = coder_agent.example.id
111111
experiment_auth_tarball = var.amazon_q_auth_tarball
112112
experiment_pre_install_script = "echo Pre-install!"

registry/coder/modules/amazon-q/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
coder = {
66
source = "coder/coder"
7-
version = ">= 0.17"
7+
version = ">= 2.5"
88
}
99
}
1010
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Run the [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude
1414
```tf
1515
module "claude-code" {
1616
source = "registry.coder.com/coder/claude-code/coder"
17-
version = "1.2.1"
17+
version = "1.3.0"
1818
agent_id = coder_agent.example.id
1919
folder = "/home/coder"
2020
install_claude_code = true
@@ -107,7 +107,7 @@ Run Claude Code as a standalone app in your workspace. This will install Claude
107107
```tf
108108
module "claude-code" {
109109
source = "registry.coder.com/coder/claude-code/coder"
110-
version = "1.2.1"
110+
version = "1.3.0"
111111
agent_id = coder_agent.example.id
112112
folder = "/home/coder"
113113
install_claude_code = true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
coder = {
66
source = "coder/coder"
7-
version = ">= 0.17"
7+
version = ">= 2.5"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)