* Add extra group conditions, template consolidation * Module fixes. Enable provisioner identity permissions via opensource api. Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
9 lines
226 B
PowerShell
9 lines
226 B
PowerShell
[CmdletBinding()]
|
|
param (
|
|
[string]$AzModuleVersion = "5.7.0" # Current version cached on agents
|
|
)
|
|
|
|
. (Join-Path $PSScriptRoot Helpers PSModule-Helpers.ps1)
|
|
|
|
Install-ModuleIfNotInstalled "Az" $AzModuleVersion | Import-Module
|