Skip to content

Instantly share code, notes, and snippets.

@cmatskas
Last active November 5, 2020 18:30
Show Gist options
  • Save cmatskas/365141426a54da66ab57e8a39d3e7677 to your computer and use it in GitHub Desktop.
Save cmatskas/365141426a54da66ab57e8a39d3e7677 to your computer and use it in GitHub Desktop.
Azure Service Principal
Login-AzureAccount
Get-AzSubscription
Select-Azubscription -Subscription "<yourSubscriptionNameOrId>"
Connect-AzureAD
$myApplication = New-AzureADApplication -DisplayName "automation-app"
New-AzADServicePrincipal -AppId $myApplication.AppId
New-AzureRmRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $myApplication.AppId
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment