File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ type DeploymentValues struct {
154
154
AgentFallbackTroubleshootingURL clibase.URL `json:"agent_fallback_troubleshooting_url,omitempty" typescript:",notnull"`
155
155
BrowserOnly clibase.Bool `json:"browser_only,omitempty" typescript:",notnull"`
156
156
SCIMAPIKey clibase.String `json:"scim_api_key,omitempty" typescript:",notnull"`
157
- ExternalTokenEncryptionKeys clibase.StringArray `json:"external_token_encryption_keys"`
157
+ ExternalTokenEncryptionKeys clibase.StringArray `json:"external_token_encryption_keys" typescript:",notnull" `
158
158
Provisioner ProvisionerConfig `json:"provisioner,omitempty" typescript:",notnull"`
159
159
RateLimit RateLimitConfig `json:"rate_limit,omitempty" typescript:",notnull"`
160
160
Experiments clibase.StringArray `json:"experiments,omitempty" typescript:",notnull"`
@@ -1774,7 +1774,7 @@ func (c *DeploymentValues) WithoutSecrets() (*DeploymentValues, error) {
1774
1774
1775
1775
// This only works with string values for now.
1776
1776
switch v := opt .Value .(type ) {
1777
- case * clibase.String :
1777
+ case * clibase.String , * clibase. StringArray :
1778
1778
err := v .Set ("" )
1779
1779
if err != nil {
1780
1780
panic (err )
You can’t perform that action at this time.
0 commit comments