Last active
April 26, 2019 21:06
-
-
Save RoyKimYYZ/c9790ad391220d6c08cea096fa4795f6 to your computer and use it in GitHub Desktop.
linkedTemplate-sqlserver - set password secret [reference('linkedTemplate-keyvault').outputs.rkkeyvault.value]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"apiVersion": "2018-05-01", | |
"name": "linkedTemplate-website", | |
"type": "Microsoft.Resources/deployments", | |
"dependsOn": ["linkedTemplate-appserviceplan", "linkedTemplate-sqlserver"], | |
"properties": { | |
"mode": "incremental", | |
"templateLink": { | |
"uri": "[uri(deployment().properties.templateLink.uri, 'azuredeploy-website.json')]", | |
"contentVersion": "1.0.0.0" | |
}, | |
"parameters": { | |
"sqlAdministratorLoginPassword": { | |
"reference": { | |
"keyVault": { | |
"id": "[reference('linkedTemplate-keyvault').outputs.rkkeyvault.value]" | |
}, | |
"secretName": "[variables('dbpasswordsecretName')]" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment