We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 454fc3b + c2c886c commit 5242053Copy full SHA for 5242053
x/realms/docker.go
@@ -49,3 +49,11 @@ var (
49
// OAuth configurations for supported MCP servers.
50
DockerMCPOAuthDCR = secrets.MustParsePattern("docker/mcp/oauth-dcr/**")
51
)
52
+
53
+var (
54
+ // DockerSandbox is the default realm used for Sandbox related secrets
55
+ DockerSandbox = secrets.MustParsePattern("docker/sandbox/**")
56
+ // DockerSandboxOAuth is the realm used for all Sandbox OAuth credentials
57
+ // such as third-party tokens - this does not store the Docker Auth tokens.
58
+ DockerSandboxOAuth = secrets.MustParsePattern("docker/sandbox/oauth/**")
59
+)
0 commit comments