Last active
November 5, 2020 18:30
-
-
Save cmatskas/365141426a54da66ab57e8a39d3e7677 to your computer and use it in GitHub Desktop.
Azure Service Principal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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