HOTSPOT
-
You have an Azure subscription.
You need to create a storage account by using a Bicep file.
How should you complete the file? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
//IMG//
param storageAccount string
var storageAccountNameToUse = '${storageAccount}${uniqueString(resourceGroup().id)}'
resource invoiceStorage 'Microsoft.Storage/storageAccounts@2022-05-01' = {
name: storageAccountNameToUse
location: 'eastus'
sku: {
name: 'Standard_GRS'
}
kind: {{slot1}}
properties: {{slot2}}
supportsHttpsTrafficOnly: true
}Correct slot values