Hi Guys,
Found this yesterday; made my own version today. On testing, it works so I wanted to share to help-out (credit due for azMantas)
------------------------------------
Git Issue with Template solution (azMantas' work)
------------------------------------
The Powershell + Custom solution Vik & I worked on:
------------------------------------
------------------------------------
RAW Bicep:
param name string = 'fabukslake'
param location string = resourceGroup().location
@allowed([
'F2'
'F4'
'F8'
'F16'
])
param skuName string = 'F2'
param skuTier string = 'Fabric'
param tagValues object = {}
resource fabricCapacities 'Microsoft.Fabric/capacities@2022-07-01-preview' = {
name: toLower(name)
location: location
tags: tagValues
sku: {
name: skuName
tier: skuTier
}
properties: {
administration: {
members: admin
}
}
}