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

PHP Laravel SQLSTATE[HY000]

I have a some problem... ORM When I use php artisan tinker, use App\Models\User $u = new User(); $u->title = 'sale'; $u->content = 'auto ...'; $u->price = 2500; HERE ARE GOOD EVERYTHING, BUT... when I type command $u->save(); I see…

VIEW QUESTION
Back To Top
Search