July 2018
Beginner
552 pages
13h 18m
English
The resources in Azure are typically grouped into resource groups. A resource group serves as a container for resources, and you can use role-based access control with it. A common approach is to group similar resources (such as networks, IaaS workloads, PaaS workloads, and so on) into separate resource groups:
# First things first# Before you can do anything, you need to loginConnect-AzureRmAccount -Subscription 'JHPaaS'# Listing your subscription's resourcesGet-AzureRmResource# These are as general as they get$resources = Get-AzureRmResource | Group-Object -Property ResourceType -AsHashTable -AsString$resources.'Microsoft.Storage/storageAccounts'# Resource Groups - still pretty generalGet-AzureRmResourceGroup# Typical IaaS ...
Read now
Unlock full access