Skip to content

Instantly share code, notes, and snippets.

@Vinaum8
Created April 16, 2022 15:52
Show Gist options
  • Select an option

  • Save Vinaum8/0cb5af363890d4d3ea5e29f2bffce51a to your computer and use it in GitHub Desktop.

Select an option

Save Vinaum8/0cb5af363890d4d3ea5e29f2bffce51a to your computer and use it in GitHub Desktop.
Bicep - account storage
@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