Created
April 16, 2022 15:52
-
-
Save Vinaum8/0cb5af363890d4d3ea5e29f2bffce51a to your computer and use it in GitHub Desktop.
Bicep - account storage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @description('Specifies the location for resources.') | |
| param location string = 'brazilsouth' | |
| resource myStorage 'Microsoft.Storage/storageAccounts@2019-06-01' = { | |
| name: 'Name' | |
| location: location | |
| sku: { | |
| name: 'Standard_LRS' | |
| } | |
| kind: 'StorageV2' | |
| properties: { | |
| accessTier: 'Hot' | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment