我正在尝试使用文件创建 Azure 资源组.bicep
:
targetScope = 'subscription'
param environment string
param location string = deployment().location
resource resourceGroup 'Microsoft.Resources/resourceGroups@2021-04-01' = {
name: 'snapshot-generator-${environment}-west-eu'
location: location
}
对于部署,我在 PowerShell 中使用以下命令:
New-AzResourceGroupDeployment -TemplateFile resourceGroup.bicep
但是请求了 ResourceGroupName,我不明白为什么以及我做错了什么。