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
#!/usr/bin/env bash | |
# Name of the Clone Service Principal | |
appName="CloneServicePrincipal" | |
# Retrieve the teannt it | |
tenantId=$(az account show --query tenantId -o tsv) | |
# Create the Clone Service Principal | |
appId=$(az ad app create --display-name $appName --query appId -o tsv) |