Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
94273a5
feat: implement `AI Bridge` heading to `/deployment/observability`
jakehwll Nov 17, 2025
0e77551
chore: `lint`/`fmt` fix
jakehwll Nov 17, 2025
53ee00f
fix: dont show `AI Bridge` heading unless enabled
jakehwll Nov 17, 2025
51cb6b9
fix: prefer to use `entitlement` over `featureVisibility`
jakehwll Nov 17, 2025
961045a
chore: commit bump
jakehwll Nov 18, 2025
8f9179e
feat: add testcase for `AIBridge`
jakehwll Nov 19, 2025
48aa5b5
fix: rename `AIBridge` to `AI Bridge`
jakehwll Nov 27, 2025
c8d605d
Merge branch 'main' into jakehwll/ai-bridge-observability
jakehwll Nov 27, 2025
9cd6621
fix: hide `access key` and `openai` key
jakehwll Nov 27, 2025
eebd457
chore: lint debug `AIBridge`
jakehwll Nov 27, 2025
31ad801
fix: restore `hidden` values
jakehwll Nov 27, 2025
dd86468
fix: hide `secret`ly annotated keys from observability
jakehwll Nov 27, 2025
a289020
chore: `AIBridge` -> `AI Bridge`
jakehwll Nov 27, 2025
9fe4f11
chore: `AIBridge` -> `AI_Bridge`
jakehwll Nov 27, 2025
afc8296
fix: remove yaml keys for security
jakehwll Nov 28, 2025
412c4cd
fix: remove keys from golden tests
jakehwll Nov 28, 2025
3f10ab6
fix: nuke keys from `server.md` (gen)
jakehwll Nov 28, 2025
1569749
fix: ignore keys in `deployment_test.go`
jakehwll Nov 28, 2025
5d2cd7a
Merge branch 'main' into jakehwll/ai-bridge-observability
jakehwll Nov 28, 2025
6e551ab
Merge branch 'main' into jakehwll/ai-bridge-observability
jakehwll Nov 29, 2025
0af34ae
Merge branch 'main' into jakehwll/ai-bridge-observability
jakehwll Dec 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: remove yaml keys for security
  • Loading branch information
jakehwll committed Nov 28, 2025
commit afc8296f5ef8d89498cf66b8ae812c2a6d5c0bd0
4 changes: 0 additions & 4 deletions codersdk/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -3267,7 +3267,6 @@ Write out the current server config as YAML to stdout.`,
Value: &c.AI.BridgeConfig.OpenAI.Key,
Default: "",
Group: &deploymentGroupAIBridge,
YAML: "openai_key",
Annotations: serpent.Annotations{}.Mark(annotationSecretKey, "true"),
},
{
Expand All @@ -3288,7 +3287,6 @@ Write out the current server config as YAML to stdout.`,
Value: &c.AI.BridgeConfig.Anthropic.Key,
Default: "",
Group: &deploymentGroupAIBridge,
YAML: "anthropic_key",
Annotations: serpent.Annotations{}.Mark(annotationSecretKey, "true"),
},
{
Expand All @@ -3309,7 +3307,6 @@ Write out the current server config as YAML to stdout.`,
Value: &c.AI.BridgeConfig.Bedrock.AccessKey,
Default: "",
Group: &deploymentGroupAIBridge,
YAML: "bedrock_access_key",
Annotations: serpent.Annotations{}.Mark(annotationSecretKey, "true"),
},
{
Expand All @@ -3320,7 +3317,6 @@ Write out the current server config as YAML to stdout.`,
Value: &c.AI.BridgeConfig.Bedrock.AccessKeySecret,
Default: "",
Group: &deploymentGroupAIBridge,
YAML: "bedrock_access_key_secret",
Annotations: serpent.Annotations{}.Mark(annotationSecretKey, "true"),
},
{
Expand Down
Loading