Skip to content

Commit

Permalink
fix uri to fqdn
Browse files Browse the repository at this point in the history
Name required the FQDN without in format
storageacccountname.endpoint.fqdn
Removed https:// the beginning and / at the end.
  • Loading branch information
marcvaneijk committed Jun 5, 2016
1 parent 0c98089 commit 4635b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 101-hdinsight-linux-ssh-password/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"storageProfile": {
"storageaccounts": [
{
"name": "[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName')), variables('defaultApiVersion')).primaryEndpoints.blob)]",
"name": "[replace(replace(concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName')), variables('defaultApiVersion')).primaryEndpoints.blob),'https:',''),'/','')]",
"isDefault": true,
"container": "[parameters('clusterName')]",
"key": "[listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), variables('defaultApiVersion')).key1]"
Expand Down

0 comments on commit 4635b82

Please sign in to comment.