skip to Main Content

Get Private FQDNs, IPs, Names of the Private Endpoints for the Azure resources deployed in an Virtual Network using PowerShell Script

Connect-AzAccount -Tenant 'xxxxx' -SubscriptionId 'xxxx' # Get the Resource Group Name $resourceGroupName = "city-app-rg-xx-uat" # Get all Private Endpoints in the Resource Group $privateEndpoints = Get-AzPrivateEndpoint -ResourceGroupName $resourceGroupName # Create a list to store the data $data = @() #…

VIEW QUESTION
Back To Top
Search