scripts/private/InitializeResourceGroupTemplate.ps1
function InitializeResourceGroupTemplate { [CmdletBinding()] [OutputType([void])] Param ( [Parameter(Position = 0)] [System.Collections.Generic.List[AzBuilderScope]] $AzBuilderScope, [Parameter(Mandatory, Position = 1)] [string] $Path ) try { [string[]] $Subscriptions = $AzBuilderScope | Where-Object -Property 'Scope' -eq 'ResourceGroup' | Select-Object -ExpandProperty 'Parent' -Unique foreach ($SubscriptionId in $Subscriptions) { [string] $SubscriptionPath = '{0}\subscriptions\{1}' -f $Path, $SubscriptionId [string] $TemplateFilePath = '{0}\AzBuilder.Deploy.ResourceGroups_{1}.json' -f $SubscriptionPath, ((New-Guid).Guid.Substring(0,8)) if (-not (Test-Path -Path $SubscriptionPath)) { $null = New-Item -Path $SubscriptionPath -ItemType 'Directory' } [pscustomobject] $TemplateObject = @' { "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [] } '@ | ConvertFrom-Json [System.Collections.Generic.List[pscustomobject]] $ResourceGroupsToDeploy = @() foreach ($Item in ($AzBuilderScope | Where-Object -FilterScript {$_.Scope -eq 'ResourceGroup' -and $_.Parent -eq $SubscriptionId})) { if ($Item.Deploy) { [pscustomobject] $ResourceGroupObject = @' { "type": "Microsoft.Resources/resourceGroups", "apiVersion": "2020-06-01", "name": "", "location": "", "tags": {}, "properties": {} } '@ | ConvertFrom-Json $ResourceGroupObject.name = $Item.Name $ResourceGroupObject.location = $Item.Location $ResourceGroupsToDeploy.Add($ResourceGroupObject) } } $TemplateObject.resources = [pscustomobject[]] $ResourceGroupsToDeploy if ($TemplateObject.resources) { $Template = $TemplateObject | ConvertTo-Json -Depth 30 FormatTemplate $Template | Out-File $TemplateFilePath } } } catch { $PSCmdlet.ThrowTerminatingError($PSItem) } } |