This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/iac/bicep/resourceGroup.bicep

11 lines
306 B
Bicep
Raw Permalink Normal View History

2022-11-03 20:41:13 +00:00
targetScope = 'subscription'
param resourceGroupName string
param location string
// https://docs.microsoft.com/en-us/azure/templates/microsoft.resources/resourcegroups?tabs=bicep
resource resourceGroup 'Microsoft.Resources/resourceGroups@2021-04-01' = {
name: resourceGroupName
location: location
}