This repository was archived by the owner on Feb 23, 2024. It is now read-only.
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 @@ -50,7 +50,7 @@ public class ExtractorConfig
50
50
public string notIncludeNamedValue { get ; set ; }
51
51
52
52
[ Description ( "Parameterize named values where value is retrieved from a Key Vault secret" ) ]
53
- public bool paramNamedValuesKeyVaultSecrets { get ; set ; }
53
+ public string paramNamedValuesKeyVaultSecrets { get ; set ; }
54
54
55
55
[ Description ( "Group the operations into batches of x?" ) ]
56
56
public int operationBatchSize { get ; set ; }
@@ -137,7 +137,7 @@ public Extractor(ExtractorConfig exc, string dirName)
137
137
this . paramLogResourceId = exc . paramLogResourceId != null && exc . paramLogResourceId . Equals ( "true" ) ;
138
138
this . notIncludeNamedValue = exc . notIncludeNamedValue != null && exc . notIncludeNamedValue . Equals ( "true" ) ;
139
139
this . operationBatchSize = exc . operationBatchSize ;
140
- this . paramNamedValuesKeyVaultSecrets = exc . paramNamedValuesKeyVaultSecrets ;
140
+ this . paramNamedValuesKeyVaultSecrets = exc . paramNamedValuesKeyVaultSecrets != null && exc . paramNamedValuesKeyVaultSecrets . Equals ( "true" ) ;
141
141
}
142
142
143
143
public Extractor ( ExtractorConfig exc ) : this ( exc , exc . fileFolder )
You can’t perform that action at this time.
0 commit comments