1resource sa 'Microsoft.Storage/storageAccounts@2019-06-01' = if (newOrExisting == 'new') { 2 name: uniqueStorageName 3 location: location 4 sku: { 5 name: storageSKU 6 } 7 kind: 'StorageV2' 8 properties: { 9 supportsHttpsTrafficOnly: true 10 } 11}
View as plain text