@@ -23,7 +23,7 @@ type DeploymentConfig struct {
23
23
ProxyTrustedOrigins * DeploymentConfigField [[]string ] `json:"proxy_trusted_origin"`
24
24
CacheDirectory * DeploymentConfigField [string ] `json:"cache_directory"`
25
25
InMemoryDatabase * DeploymentConfigField [bool ] `json:"in_memory_database"`
26
- ProvisionerDaemons * DeploymentConfigField [int ] `json:"provisioner_daemon_count "`
26
+ ProvisionerDaemons * DeploymentConfigField [int ] `json:"provisioner_daemons "`
27
27
PostgresURL * DeploymentConfigField [string ] `json:"pg_connection_url"`
28
28
OAuth2 * OAuth2Config `json:"oauth2"`
29
29
OIDC * OIDCConfig `json:"oidc"`
@@ -47,12 +47,12 @@ type DERP struct {
47
47
}
48
48
49
49
type DERPServerConfig struct {
50
- Enable * DeploymentConfigField [bool ] `json:"enabled "`
50
+ Enable * DeploymentConfigField [bool ] `json:"enable "`
51
51
RegionID * DeploymentConfigField [int ] `json:"region_id"`
52
52
RegionCode * DeploymentConfigField [string ] `json:"region_code"`
53
53
RegionName * DeploymentConfigField [string ] `json:"region_name"`
54
- STUNAddresses * DeploymentConfigField [[]string ] `json:"stun_address "`
55
- RelayURL * DeploymentConfigField [string ] `json:"relay_address "`
54
+ STUNAddresses * DeploymentConfigField [[]string ] `json:"stun_addresses "`
55
+ RelayURL * DeploymentConfigField [string ] `json:"relay_url "`
56
56
}
57
57
58
58
type DERPConfig struct {
@@ -61,12 +61,12 @@ type DERPConfig struct {
61
61
}
62
62
63
63
type PrometheusConfig struct {
64
- Enable * DeploymentConfigField [bool ] `json:"enabled "`
64
+ Enable * DeploymentConfigField [bool ] `json:"enable "`
65
65
Address * DeploymentConfigField [string ] `json:"address"`
66
66
}
67
67
68
68
type PprofConfig struct {
69
- Enable * DeploymentConfigField [bool ] `json:"enabled "`
69
+ Enable * DeploymentConfigField [bool ] `json:"enable "`
70
70
Address * DeploymentConfigField [string ] `json:"address"`
71
71
}
72
72
@@ -93,17 +93,17 @@ type OIDCConfig struct {
93
93
}
94
94
95
95
type TelemetryConfig struct {
96
- Enable * DeploymentConfigField [bool ] `json:"enabled "`
96
+ Enable * DeploymentConfigField [bool ] `json:"enable "`
97
97
Trace * DeploymentConfigField [bool ] `json:"trace"`
98
98
URL * DeploymentConfigField [string ] `json:"url"`
99
99
}
100
100
101
101
type TLSConfig struct {
102
102
Enable * DeploymentConfigField [bool ] `json:"enable"`
103
- CertFiles * DeploymentConfigField [[]string ] `json:"cert_files "`
103
+ CertFiles * DeploymentConfigField [[]string ] `json:"cert_file "`
104
104
ClientAuth * DeploymentConfigField [string ] `json:"client_auth"`
105
105
ClientCAFile * DeploymentConfigField [string ] `json:"client_ca_file"`
106
- KeyFiles * DeploymentConfigField [[]string ] `json:"key_files "`
106
+ KeyFiles * DeploymentConfigField [[]string ] `json:"key_file "`
107
107
MinVersion * DeploymentConfigField [string ] `json:"min_version"`
108
108
}
109
109
0 commit comments