Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pkg/settings/cresettings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ flowchart
%% PerOrg.ZeroBalancePruningTimeout

subgraph Store.FetchWorkflowArtifacts
CentralizedWorkflowOwnerVerificationEnabled[/CentralizedWorkflowOwnerVerificationEnabled\]:::gate
PerWorkflow.WASMConfigSizeLimit{{PerWorkflow.WASMConfigSizeLimit}}:::bound
PerWorkflow.WASMBinarySizeLimit{{PerWorkflow.WASMBinarySizeLimit}}:::bound
PerWorkflow.WASMSecretsSizeLimit{{PerWorkflow.WASMSecretsSizeLimit}}:::bound
Expand Down
1 change: 1 addition & 0 deletions pkg/settings/cresettings/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"GatewayIncomingPayloadSizeLimit": "1mb",
"GatewayVaultManagementEnabled": "true",
"VaultJWTAuthEnabled": "false",
"CentralizedWorkflowOwnerVerificationEnabled": "false",
"VaultOrgIdAsSecretOwnerEnabled": "false",
"PropagateOrgIDInRequestMetadata": "false",
"VaultBase64EncodingEnabled": "false",
Expand Down
1 change: 1 addition & 0 deletions pkg/settings/cresettings/defaults.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ WorkflowExecutionConcurrencyLimit = '1000'
GatewayIncomingPayloadSizeLimit = '1mb'
GatewayVaultManagementEnabled = 'true'
VaultJWTAuthEnabled = 'false'
CentralizedWorkflowOwnerVerificationEnabled = 'false'
VaultOrgIdAsSecretOwnerEnabled = 'false'
PropagateOrgIDInRequestMetadata = 'false'
VaultBase64EncodingEnabled = 'false'
Expand Down
2 changes: 2 additions & 0 deletions pkg/settings/cresettings/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ var Default = Schema{
GatewayIncomingPayloadSizeLimit: Size(1 * config.MByte),
GatewayVaultManagementEnabled: Bool(true),
VaultJWTAuthEnabled: Bool(false),
CentralizedWorkflowOwnerVerificationEnabled: Bool(false),
// Deprecated: retained for backwards compatibility; workflow owner identifies secret ownership.
VaultOrgIdAsSecretOwnerEnabled: Bool(false),
PropagateOrgIDInRequestMetadata: Bool(false),
Expand Down Expand Up @@ -314,6 +315,7 @@ type Schema struct {
GatewayIncomingPayloadSizeLimit Setting[config.Size]
GatewayVaultManagementEnabled Setting[bool]
VaultJWTAuthEnabled Setting[bool]
CentralizedWorkflowOwnerVerificationEnabled Setting[bool]
VaultOrgIdAsSecretOwnerEnabled Setting[bool] // Deprecated
PropagateOrgIDInRequestMetadata Setting[bool]
VaultBase64EncodingEnabled Setting[bool]
Expand Down
Loading