Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Commit

Permalink
azuredeploy output update
Browse files Browse the repository at this point in the history
  • Loading branch information
colbylwilliams committed Apr 3, 2018
1 parent 275b205 commit cd8b5d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"functionAppLanguage": {
"type": "string",
"allowedValues": [
"Javascript",
"JavaScript",
"C#",
"C# Script (.csx)"
],
Expand Down Expand Up @@ -107,7 +107,7 @@
"WEBSITE_CONTENTSHARE": "[variables('functionAppNameLower')]",
"WEBSITE_HTTPLOGGING_RETENTION_DAYS": "2",
"WEBSITE_NODE_DEFAULT_VERSION": "6.5.0",
"PROJECT": "[if(equals(parameters('functionAppLanguage'),'C#'), 'csharp/csharp', if(equals(parameters('functionAppLanguage'),'Javascript'), 'javascript', 'csharpscript'))]",
"PROJECT": "[if(equals(parameters('functionAppLanguage'),'C#'), 'csharp/csharp', if(equals(parameters('functionAppLanguage'),'JavaScript'), 'javascript', 'csharpscript'))]",
"AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2017-06-01').keys[0].value)]",
"AzureWebJobsDashboard": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2017-06-01').keys[0].value)]",
"AzureWebJobsDocumentDBConnectionString": "[concat('AccountEndpoint=', reference(concat('Microsoft.DocumentDb/databaseAccounts/', variables('documentDbName'))).documentEndpoint, ';AccountKey=', listKeys(resourceId('Microsoft.DocumentDb/databaseAccounts', variables('documentDbName')), '2015-04-08').primaryMasterKey)]",
Expand Down Expand Up @@ -265,7 +265,7 @@
"outputs": {
"Configure_iOS": {
"type": "string",
"value": "[concat('AzureData.configure(forAccountNamed:\"', variables('documentDbName'), '\", withKey: \"', listKeys(resourceId('Microsoft.DocumentDb/databaseAccounts', variables('documentDbName')), '2015-04-08').primaryMasterKey, '\", ofType: .master)')]"
"value": "[concat('AzureData.configure(forAccountNamed:\"', variables('documentDbName'), '\", withMasterKey: \"', listKeys(resourceId('Microsoft.DocumentDb/databaseAccounts', variables('documentDbName')), '2015-04-08').primaryMasterKey, '\", withPermissionMode: .all)')]"
},
"Configure_Android": {
"type": "string",
Expand Down

0 comments on commit cd8b5d7

Please sign in to comment.