Created
May 15, 2018 14:17
-
-
Save arsenvlad/e1da3f78aec0cbfc16c33c814c651428 to your computer and use it in GitHub Desktop.
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
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"azureStorageAccountResourceGroup": { | |
"type": "string", | |
"metadata": { | |
"description": "Resource group of Azure Storage account to synchronize with." | |
} | |
}, | |
"azureStorageAccountName": { | |
"type": "string", | |
"metadata": { | |
"description": "The name of the storage account to synchronise with." | |
} | |
} | |
}, | |
"variables": { | |
"azureStorageAccountID": "[resourceId(parameters('azureStorageAccountResourceGroup'), 'Microsoft.Storage/storageAccounts', parameters('azureStorageAccountName'))]" | |
}, | |
"resources": [ | |
], | |
"outputs": { | |
"storageAccountUri": { | |
"type": "string", | |
"value": "[reference(variables('azureStorageAccountID'), '2018-02-01').primaryEndpoints.blob]" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment