What is Azure resource group and how to create it PowerShell
What is Resource group:
- Before deploying any resources to your subscription, you must create a resource group that will contain the resources.
Create a resource group:
- To create a resource group, use the New-AzureRmResourceGroup cmdlet.
New-AzureRmResourceGroup -Name CognosApp -Location "West US"
- Uses the Name parameter to specify a name for the resource group and the Location parameter to specify its location.
No comments:
Post a Comment