Skip to content

Commit

Permalink
Satisfying required param defaults
Browse files Browse the repository at this point in the history
(to remove error for now)
  • Loading branch information
rohancragg committed Jul 6, 2023
1 parent 827e4d0 commit 21c3b6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/bicep/storage.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
'Standard_RAGZRS'
'Standard_ZRS'
])
param storageAccountType string
param storageAccountType string = 'Standard_LRS'

@description('The storage account location.')
param location string
param location string = resourceGroup().location

@description('The name of the storage account')
param storageAccountName string
param storageAccountName string = 'storageDefaultName'

resource sa 'Microsoft.Storage/storageAccounts@2022-09-01' = {
name: storageAccountName
Expand Down

0 comments on commit 21c3b6e

Please sign in to comment.