6 lines
475 B
PowerShell
6 lines
475 B
PowerShell
Write-Verbose -Message "Connect to Azure using Service Principal" -Verbose
|
|
$tenantId = '2dea0464-da51-4a88-bae2-b3db94bc0c54'
|
|
$AppId = '60244573-7130-4026-9c6d-47de73f8ca29'
|
|
$SecureStringPwd = $Secret:azure_iaasserviceprincipal
|
|
$PSCredential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $AppId, ($SecureStringPwd | ConvertTo-SecureString -AsPlainText -Force)
|
|
Connect-AzAccount -ServicePrincipal -Credential $PSCredential -Tenant $tenantId |