Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeurbanski1 committed Aug 7, 2020
0 parents commit 5199498
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions storage/storage.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]"
},
},
"variables": {},
"resources": [
{
"name": "bcazrstorage1",
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2019-06-01",
"location": "[parameters('location')]",
"properties": {
"accessTier": "Hot",
"minimumTlsVersion": "TLS1_1",
"supportsHttpsTrafficOnly": "false",
"allowBlobPublicAccess": "true"
},
"dependsOn": [],
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2",
"tags": {},
"resources": [
{
"type": "blobServices/containers",
"apiVersion": "2019-06-01",
"name": "default/bcazrcontainer1",
"properties": {
"publicAccess": "Container"
},
"dependsOn": [
"bcazrstorage1"
]
}
]
}
],
"outputs": {}
}

0 comments on commit 5199498

Please sign in to comment.