Skip to content

Commit

Permalink
Fixed secret reference example
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSehr committed Sep 16, 2022
1 parent 7753f2b commit 7168875
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions modules/Microsoft.Compute/virtualMachineScaleSets/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,10 +398,12 @@ nicConfigurations: [
}
},
"extensionDomainJoinPassword": {
"keyVault": {
"id": "/subscriptions/62826c76-d304-46d8-a0f6-718dbdcc536c/resourceGroups/WVD-Mgmt-TO-RG/providers/Microsoft.KeyVault/vaults/wvd-to-kvlt"
},
"secretName": "domainJoinUser02-Password"
"reference": {
"keyVault": {
"id": "/subscriptions/<<subscriptionId>/resourceGroups/myRG/providers/Microsoft.KeyVault/vaults/myKvlt"
},
"secretName": "domainJoinUser02-Password"
}
}
```

Expand Down
10 changes: 6 additions & 4 deletions modules/Microsoft.Compute/virtualMachines/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -506,10 +506,12 @@ configurationProfileAssignments: [
}
},
"extensionDomainJoinPassword": {
"keyVault": {
"id": "/subscriptions/62826c76-d304-46d8-a0f6-718dbdcc536c/resourceGroups/WVD-Mgmt-TO-RG/providers/Microsoft.KeyVault/vaults/wvd-to-kvlt"
},
"secretName": "domainJoinUser02-Password"
"reference": {
"keyVault": {
"id": "/subscriptions/<<subscriptionId>/resourceGroups/myRG/providers/Microsoft.KeyVault/vaults/myKvlt"
},
"secretName": "domainJoinUser02-Password"
}
}
```

Expand Down

0 comments on commit 7168875

Please sign in to comment.