Skip to content

Commit 1969cfb

Browse files
authored
Merge branch 'main' into cv-kasm
2 parents e9fac91 + 5a3ade7 commit 1969cfb

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ module "claude-code" {
2222
}
2323
```
2424

25+
> **Security Notice**: This module uses the [`--dangerously-skip-permissions`](https://docs.anthropic.com/en/docs/claude-code/cli-usage#cli-flags) flag when running Claude Code. This flag
26+
> bypasses standard permission checks and allows Claude Code broader access to your system than normally permitted. While
27+
> this enables more functionality, it also means Claude Code can potentially execute commands with the same privileges as
28+
> the user running it. Use this module _only_ in trusted environments and be aware of the security implications.
29+
2530
## Prerequisites
2631

2732
- Node.js and npm must be installed in your workspace to install Claude Code

registry/coder/modules/jetbrains-gateway/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Consult the [JetBrains documentation](https://www.jetbrains.com/help/idea/prereq
1818
module "jetbrains_gateway" {
1919
count = data.coder_workspace.me.start_count
2020
source = "registry.coder.com/coder/jetbrains-gateway/coder"
21-
version = "1.1.0"
21+
version = "1.1.1"
2222
agent_id = coder_agent.example.id
2323
folder = "/home/coder/example"
2424
jetbrains_ides = ["CL", "GO", "IU", "PY", "WS"]
@@ -36,7 +36,7 @@ module "jetbrains_gateway" {
3636
module "jetbrains_gateway" {
3737
count = data.coder_workspace.me.start_count
3838
source = "registry.coder.com/coder/jetbrains-gateway/coder"
39-
version = "1.1.0"
39+
version = "1.1.1"
4040
agent_id = coder_agent.example.id
4141
folder = "/home/coder/example"
4242
jetbrains_ides = ["GO", "WS"]
@@ -50,7 +50,7 @@ module "jetbrains_gateway" {
5050
module "jetbrains_gateway" {
5151
count = data.coder_workspace.me.start_count
5252
source = "registry.coder.com/coder/jetbrains-gateway/coder"
53-
version = "1.1.0"
53+
version = "1.1.1"
5454
agent_id = coder_agent.example.id
5555
folder = "/home/coder/example"
5656
jetbrains_ides = ["IU", "PY"]
@@ -65,7 +65,7 @@ module "jetbrains_gateway" {
6565
module "jetbrains_gateway" {
6666
count = data.coder_workspace.me.start_count
6767
source = "registry.coder.com/coder/jetbrains-gateway/coder"
68-
version = "1.1.0"
68+
version = "1.1.1"
6969
agent_id = coder_agent.example.id
7070
folder = "/home/coder/example"
7171
jetbrains_ides = ["IU", "PY"]
@@ -90,7 +90,7 @@ module "jetbrains_gateway" {
9090
module "jetbrains_gateway" {
9191
count = data.coder_workspace.me.start_count
9292
source = "registry.coder.com/coder/jetbrains-gateway/coder"
93-
version = "1.1.0"
93+
version = "1.1.1"
9494
agent_id = coder_agent.example.id
9595
folder = "/home/coder/example"
9696
jetbrains_ides = ["GO", "WS"]
@@ -108,7 +108,7 @@ Due to the highest priority of the `ide_download_link` parameter in the `(jetbra
108108
module "jetbrains_gateway" {
109109
count = data.coder_workspace.me.start_count
110110
source = "registry.coder.com/coder/jetbrains-gateway/coder"
111-
version = "1.1.0"
111+
version = "1.1.1"
112112
agent_id = coder_agent.example.id
113113
folder = "/home/coder/example"
114114
jetbrains_ides = ["GO", "WS"]

registry/coder/modules/jetbrains-gateway/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ variable "folder" {
4545
type = string
4646
description = "The directory to open in the IDE. e.g. /home/coder/project"
4747
validation {
48-
condition = can(regex("^(?:/[^/]+)+$", var.folder))
48+
condition = can(regex("^(?:/[^/]+)+/?$", var.folder))
4949
error_message = "The folder must be a full path and must not start with a ~."
5050
}
5151
}

0 commit comments

Comments
 (0)