Azure Powershell
- For Powershell sessions Refer Here
- Powershell will have cmdlets. Collection of cmdlets and others (functions) is referred as Module
- To connect to Az account
Connect-AzAccount
# or
Connect-AzAccount -DeviceCode
- Try to find a powershell command to create a resource group
Get-Command '*-AzResource*'
# From the cmd lets found choose the right cmdlet
Get-Help 'New-AzResourceGroup'
# Explore examples and look at the Output type and properties
- Try to find a powershell command to create a virtual network
- Refer Here for the changes done
- Add Peering connection Refer Here for the powershell connection
Azure Private Link and Endpoint
- Azure private endpoint is a network interface that uses a private IP adderss from your virtual network.
- This network interface connects you private and securely to service (Thats powered by Azure Private Link)