File tree Expand file tree Collapse file tree
articles/operator-service-manager Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -196,18 +196,18 @@ Consider the following ARM template requirements to properly obscure secret valu
196196
197197```json
198198"parameters" : {
199- "siteSpecificValues " : {
199+ "nfValues " : {
200200 "type" : " object"
201- },
202- "secretValues" : {
203- "type" : " secureObject"
204201 },
205- "nfValues " : {
202+ "siteSpecificValues " : {
206203 "type" : " object"
207204 },
205+ "secretValues" : {
206+ "type" : " secureObject"
207+ },
208208 "config" : {
209209 "type" : " secureObject" ,
210- "defaultValue" : " [union(parameters('nfValues'),parameters('siteSpecificValues'), parameters('secretValues'))]"
210+ "defaultValue" : " [union(parameters('nfValues'), parameters('siteSpecificValues'), parameters('secretValues'))]"
211211 }
212212}
213213```
@@ -223,7 +223,7 @@ Consider the following ARM template requirements to properly obscure secret valu
223223 {
224224 "type" : " Microsoft.HybridNetwork/networkFunctions" ,
225225 "configurationType" : " Secret" ,
226- "secretDeploymentValues" : " [string(variables ('config'))]" ,
226+ "secretDeploymentValues" : " [string(parameters ('config'))]" ,
227227 }
228228]
229229```
You can’t perform that action at this time.
0 commit comments