File tree 2 files changed +11
-4
lines changed 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -296,9 +296,10 @@ func newConfig() *codersdk.DeploymentConfig {
296
296
Flag : "trace" ,
297
297
},
298
298
HoneycombAPIKey : & codersdk.DeploymentConfigField [string ]{
299
- Name : "Trace Honeycomb API Key" ,
300
- Usage : "Enables trace exporting to Honeycomb.io using the provided API Key." ,
301
- Flag : "trace-honeycomb-api-key" ,
299
+ Name : "Trace Honeycomb API Key" ,
300
+ Usage : "Enables trace exporting to Honeycomb.io using the provided API Key." ,
301
+ Flag : "trace-honeycomb-api-key" ,
302
+ Secret : true ,
302
303
},
303
304
},
304
305
SecureAuthCookie : & codersdk.DeploymentConfigField [bool ]{
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ export interface DeploymentConfig {
292
292
readonly oidc : OIDCConfig
293
293
readonly telemetry : TelemetryConfig
294
294
readonly tls : TLSConfig
295
- readonly trace_enable : DeploymentConfigField < boolean >
295
+ readonly trace : TraceConfig
296
296
readonly secure_auth_cookie : DeploymentConfigField < boolean >
297
297
readonly ssh_keygen_algorithm : DeploymentConfigField < string >
298
298
readonly auto_import_templates : DeploymentConfigField < string [ ] >
@@ -664,6 +664,12 @@ export interface TemplateVersionsByTemplateRequest extends Pagination {
664
664
readonly template_id : string
665
665
}
666
666
667
+ // From codersdk/deploymentconfig.go
668
+ export interface TraceConfig {
669
+ readonly enable : DeploymentConfigField < boolean >
670
+ readonly honeycomb_api_key : DeploymentConfigField < string >
671
+ }
672
+
667
673
// From codersdk/templates.go
668
674
export interface UpdateActiveTemplateVersion {
669
675
readonly id : string
You can’t perform that action at this time.
0 commit comments