Azure Rest-API Calls from PowerShell
Here is a simple Rest-API call from PowerShell for creating the resource group, using the App Registration: # Set the Azure AD tenant ID, client ID, and client secret $tenantId = “<tenant-id>” $clientId = “<client-id>” $clientSecret = “<client-secret>” # Set the Azure subscription ID, resource group name, and location $subscriptionId = “<subscription-id>” $resourceGroupName = […]