11 lines
248 B
Text
11 lines
248 B
Text
|
resource sa 'Microsoft.Storage/storageAccounts@2019-06-01' = if (newOrExisting == 'new') {
|
||
|
name: uniqueStorageName
|
||
|
location: location
|
||
|
sku: {
|
||
|
name: storageSKU
|
||
|
}
|
||
|
kind: 'StorageV2'
|
||
|
properties: {
|
||
|
supportsHttpsTrafficOnly: true
|
||
|
}
|
||
|
}
|