Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
crpietschmann committed Mar 15, 2024
2 parents 59f4bf9 + 48be1e3 commit dcffb56
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
4 changes: 2 additions & 2 deletions IaC/ARM/v1/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.25.53.49325",
"templateHash": "3034798151611343286"
"version": "0.26.54.24096",
"templateHash": "16834692971558596919"
}
},
"parameters": {
Expand Down
24 changes: 22 additions & 2 deletions IaC/ARM/v2/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.25.53.49325",
"templateHash": "4492116795544301451"
"version": "0.26.54.24096",
"templateHash": "12500992424623783544"
}
},
"parameters": {
Expand All @@ -28,6 +28,10 @@
"azureStorageSku": {
"type": "string",
"defaultValue": "Standard_LRS"
},
"azureStorageBlobContainerName": {
"type": "string",
"defaultValue": "docs"
}
},
"variables": {
Expand Down Expand Up @@ -107,6 +111,22 @@
"supportsHttpsTrafficOnly": true,
"accessTier": "Hot"
}
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices",
"apiVersion": "2023-01-01",
"name": "[format('{0}/{1}', format('{0}sa', variables('resourcePrefix_for_storage')), 'default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', format('{0}sa', variables('resourcePrefix_for_storage')))]"
]
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices/containers",
"apiVersion": "2023-01-01",
"name": "[format('{0}/{1}/{2}', format('{0}sa', variables('resourcePrefix_for_storage')), 'default', parameters('azureStorageBlobContainerName'))]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts/blobServices', format('{0}sa', variables('resourcePrefix_for_storage')), 'default')]"
]
}
]
}

0 comments on commit dcffb56

Please sign in to comment.