Azure Powershell
- Azure Powershell will have cmd-lets which will be in the form of
<verb>-Az<noun>
New-AzResourceGroup
List-AzResourceGroup
- To find a cmdlet
Get-Command *-Az<service>
Get-Help <cmd-let> -online
- Create a virtual network with six subnets by referring example Refer Here
- Refer Here for the solution
- Exercise: Create a nsg which opens 22,80 and 443 port from anywhere (inbound)
- Exercise: Create a nsg which denies all the communication from data subnet and attach it to the web subnet.
- Refer Here for the NSG created using Azure Powershell
