mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
feat: enable key rotation (#15066)
This PR contains the remaining logic necessary to hook up key rotation to the product.
This commit is contained in:
18
coderd/apidoc/docs.go
generated
18
coderd/apidoc/docs.go
generated
@ -7646,6 +7646,15 @@ const docTemplate = `{
|
||||
],
|
||||
"summary": "Get workspace proxy crypto keys",
|
||||
"operationId": "get-workspace-proxy-crypto-keys",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "Feature key",
|
||||
"name": "feature",
|
||||
"in": "query",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
@ -10011,12 +10020,14 @@ const docTemplate = `{
|
||||
"codersdk.CryptoKeyFeature": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"workspace_apps",
|
||||
"workspace_apps_api_key",
|
||||
"workspace_apps_token",
|
||||
"oidc_convert",
|
||||
"tailnet_resume"
|
||||
],
|
||||
"x-enum-varnames": [
|
||||
"CryptoKeyFeatureWorkspaceApp",
|
||||
"CryptoKeyFeatureWorkspaceAppsAPIKey",
|
||||
"CryptoKeyFeatureWorkspaceAppsToken",
|
||||
"CryptoKeyFeatureOIDCConvert",
|
||||
"CryptoKeyFeatureTailnetResume"
|
||||
]
|
||||
@ -16244,9 +16255,6 @@ const docTemplate = `{
|
||||
"wsproxysdk.RegisterWorkspaceProxyResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"app_security_key": {
|
||||
"type": "string"
|
||||
},
|
||||
"derp_force_websockets": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
Reference in New Issue
Block a user