Skip to content

Commit f95da3b

Browse files
authored
Refactor JSON parameters in configuration guide
1 parent 4b2a93a commit f95da3b

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

articles/operator-service-manager/configuration-guide.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
```

0 commit comments

Comments
 (0)