Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
feat(app): add storage
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Dec 9, 2019
1 parent 89c2a4e commit f54989b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@
"description": "Specifies the number of provisioned IoT Hub units. Restricted to 1 unit for the F1 SKU. Can be set up to maximum number allowed for subscription."
}
},
"AppStorageName": {
"type": "string",
"defaultValue": "bifravstapp",
"maxLength": 24,
"metadata": {
"description": "Storage account name must be between 3 and 24 characters in length and use numbers and lower-case letters only."
}
},
"DeviceUiStorageName": {
"type": "string",
"defaultValue": "bifravstdeviceui",
Expand Down Expand Up @@ -99,6 +107,19 @@
"properties": {
"supportsHttpsTrafficOnly": "true"
}
},
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2019-04-01",
"name": "[parameters('AppStorageName')]",
"location": "[parameters('location')]",
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2",
"properties": {
"supportsHttpsTrafficOnly": "true"
}
}
],
"outputs": {
Expand Down

0 comments on commit f54989b

Please sign in to comment.