Azure Vnet Service Endpoints
- Azure Vnet Service Endpoint provides a secure and direct connectivity to Azure Services over an optimized route over the Azure back bone network.
- Service Endpoints can be created for
- Azure Storage
- Azure SQL Database
- Azure Synapse Analytics
- Azure Database for Postgres/MySQL Server
- Azure Cosmos DB
- Azure Key Vault
- Azure Service Bus
- Azure Event Hubs
- Azure App Service
- Azure Cognitive Services
- Azure Data Lake Storage
- Service Endpoint
- Private Endpoint
Lab Setup For Load Balancing and DNS Usecases
- Create an ubuntu vm with size Standard_B1s
- Install a lamp stack by following instructions Refer Here
sudo apt update
sudo apt install apache2 -y
sudo apt install php libapache2-mod-php php-mysql -y
echo '<?php phpinfo() ?>;' | sudo tee /var/www/html/info.php
sudo systemctl restart apache2
