mirror of
https://github.com/coder/coder.git
synced 2026-06-04 13:38:21 +00:00
e9f0385198
## Summary Replace the "Premium" label with "AI Governance Add-On" and add a disclaimer that the AI Governance Add-On is required for AI Gateway and Agent Firewall as of Coder v2.32, across all AI Governance doc pages and their children. ## Changes **Label and requirement updates (7 files):** - `docs/ai-coder/ai-governance.md`: Removed "(Premium)" from title; updated GA section to state add-on required as of v2.32. - `docs/ai-coder/ai-gateway/setup.md`: "Premium license" → "AI Governance Add-On license". - `docs/ai-coder/ai-gateway/ai-gateway-proxy/setup.md`: "Premium license" → "AI Governance Add-On". - `docs/ai-coder/ai-gateway/clients/claude-code.md`: "(Premium feature)" → "(AI Governance Add-On)". - `docs/manifest.json`: `"state": ["premium"]` → `"state": ["ai governance add-on"]` for 4 nav entries. **Disclaimer added to all child pages (26 files):** AI Gateway pages (18): `index.md`, `setup.md`, `audit.md`, `monitoring.md`, `mcp.md`, `reference.md`, `ai-gateway-proxy/index.md`, `ai-gateway-proxy/setup.md`, `clients/index.md`, `clients/claude-code.md`, `clients/codex.md`, `clients/mux.md`, `clients/opencode.md`, `clients/factory.md`, `clients/cline.md`, `clients/kilo-code.md`, `clients/roo-code.md`, `clients/vscode.md`, `clients/jetbrains.md`, `clients/zed.md`, `clients/copilot.md` Agent Firewall pages (8): `index.md`, `version.md`, `landjail.md`, `rules-engine.md`, `nsjail/index.md`, `nsjail/docker.md`, `nsjail/k8s.md`, `nsjail/ecs.md` Other: `security.md` > [!NOTE] > The `"ai governance add-on"` state value in `manifest.json` is new. The docs site renderer may need to be updated to support this state value. > Generated by Coder Agents
71 lines
2.4 KiB
Markdown
71 lines
2.4 KiB
Markdown
# Version Requirements
|
|
|
|
> [!NOTE]
|
|
> Agent Firewall requires the [AI Governance Add-On](../ai-governance.md).
|
|
> As of Coder v2.32, deployments without the add-on will not be able to
|
|
> access Agent Firewall.
|
|
|
|
## Recommended Versions
|
|
|
|
It's recommended to use **Coder v2.30.0 or newer** and **Claude Code module
|
|
v4.7.0 or newer**.
|
|
|
|
### Coder v2.30.0+
|
|
|
|
Since Coder v2.30.0, Agent Firewall is embedded inside the Coder binary, and
|
|
you don't need to install it separately. The `coder boundary` subcommand is
|
|
available directly from the Coder CLI.
|
|
|
|
### Claude Code Module v4.7.0+
|
|
|
|
Since Claude Code module v4.7.0, the embedded `coder boundary` subcommand is
|
|
used by default. This means you don't need to set `boundary_version`; the
|
|
boundary version is tied to your Coder version.
|
|
|
|
## Compatibility with Older Versions
|
|
|
|
### Using Coder Before v2.30.0 with Claude Code Module v4.7.0+
|
|
|
|
If you're using Coder before v2.30.0 with Claude Code module v4.7.0 or newer,
|
|
the `coder boundary` subcommand isn't available in your Coder installation. In
|
|
this case, you need to:
|
|
|
|
1. Set `use_boundary_directly = true` in your Terraform module configuration
|
|
2. Explicitly set `boundary_version` to specify which Agent Firewall version
|
|
to install
|
|
|
|
Example configuration:
|
|
|
|
```tf
|
|
module "claude-code" {
|
|
source = "dev.registry.coder.com/coder/claude-code/coder"
|
|
version = "4.7.0"
|
|
enable_boundary = true
|
|
use_boundary_directly = true
|
|
boundary_version = "0.6.0"
|
|
}
|
|
```
|
|
|
|
### Using Claude Code Module Before v4.7.0
|
|
|
|
If you're using Claude Code module before v4.7.0, the module expects to use
|
|
Agent Firewall directly. You need to explicitly set `boundary_version` in your
|
|
Terraform configuration:
|
|
|
|
```tf
|
|
module "claude-code" {
|
|
source = "dev.registry.coder.com/coder/claude-code/coder"
|
|
version = "4.6.0"
|
|
enable_boundary = true
|
|
boundary_version = "0.6.0"
|
|
}
|
|
```
|
|
|
|
## Summary
|
|
|
|
| Coder Version | Claude Code Module Version | Configuration Required |
|
|
|---------------|----------------------------|-------------------------------------------------------|
|
|
| v2.30.0+ | v4.7.0+ | No additional configuration needed |
|
|
| < v2.30.0 | v4.7.0+ | `use_boundary_directly = true` and `boundary_version` |
|
|
| Any | < v4.7.0 | `boundary_version` |
|