File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
registry/coder/modules/claude-code Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,23 @@ By default, Claude Code automatically resumes existing conversations when your w
3838
3939## Examples
4040
41+ ### Usage with Agent Boundaries
42+
43+ This example shows how to configure the Claude Code module to run the agent behind a process-level boundary that restricts its network access.
44+
45+ ``` tf
46+ module "claude-code" {
47+ source = "dev.registry.coder.com/coder/claude-code/coder"
48+ enable_boundary = true
49+ boundary_version = "main"
50+ boundary_log_dir = "/tmp/boundary_logs"
51+ boundary_log_level = "WARN"
52+ boundary_additional_allowed_urls = ["GET *google.com"]
53+ boundary_proxy_port = "8087"
54+ version = "3.2.1"
55+ }
56+ ```
57+
4158### Usage with Tasks and Advanced Configuration
4259
4360This example shows how to configure the Claude Code module with an AI prompt, API key shared by all users of the template, and other custom settings.
You can’t perform that action at this time.
0 commit comments