Posts

Powershell Script to configure Azure Application Gateway

 # Variables $resourceGroupName = "myResourceGroup" $appGwName = "myAppGw" $vnetName = "myVnet" $subnetName = "mySubnet" $frontendIpName = "myFrontendIp" $frontendPortName = "myFrontendPort" $backendPoolName = "myBackendPool" $httpSettingsName = "myHttpSettings" $httpListenerName = "myHttpListener" $certName = "myCert" # Connect to Azure Connect-AzAccount # Get the Application Gateway $appGw = Get-AzApplicationGateway -ResourceGroupName $resourceGroupName -Name $appGwName # Get the Virtual Network and Subnet $vnet = Get-AzVirtualNetwork -ResourceGroupName $resourceGroupName -Name $vnetName $subnet = Get-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $vnet # Configure the Frontend IP Configuration $frontendIp = New-AzApplicationGatewayFrontendIPConfig -Name $frontendIpName -PrivateIPAddressVersion IPv4 -Subnet $subnet $appGw | Add-AzApplicationGatewayFrontendIPConfig -Fron...

AZURE ADMINISTRATOR ASSOCIATE AZ-103

Course Curriculum Section 01 - Course Introduction Section 02 - Cloud Introduction  Section 03 - Start with Azure Subscriptions Section 04 - Utilization and Billing details Section 05 - Start with Resource Groups Section 06 - Azure Storage Account Section 07 - Data transfer to Azure Section 08 - Azure File Section 09 - Azure App Services Section 10 - Azure Virtual Machines Section 11 - Demo - Creating and Managing Windows and Linux VMs Section 12 - Manage Azure VM (Disk/CPU/RAM/Automation) Section 13 - Manage VM Backups (Configure Auto Backup) Section 14 - Azure Networking Concepts  Section 15 - Manage Virtual Network and Subnets Section 16 - DNS Section 17 - Network Security Groups Section 18 - Azure Active Directory Section 19 - AD Connect Section 20 - Azure Database Section 21 - Enable Multi-Factor Authentication (MFA) Section 22 - Managed Role-Based Access Control (RBAC) Section 23 - Implement Azure Load Balancer Section 24 -...