Skip to content

Instantly share code, notes, and snippets.

@segraef
Created September 7, 2020 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save segraef/d5a84dabdecded5a98d6e0422bb04a8b to your computer and use it in GitHub Desktop.
Save segraef/d5a84dabdecded5a98d6e0422bb04a8b to your computer and use it in GitHub Desktop.
ARM bicep file
param location string = 'eastus'
param name string = '3on4oivnio43das'
var storageSku = 'Standard_LRS'
resource stg 'Microsoft.Storage/storageAccounts@2019-06-01' = {
name: name
location: location
kind: 'Storage'
sku: {
name: storageSku
}
}
output storageId string = stg.id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment