Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Creating AG's backend pool with no target.
# step 9a - configure back-end IP address pool with internal IP of APIM
$apimProxyBackendPool = New-AzApplicationGatewayBackendAddressPool `
-Name "apimbackend" `
-BackendIPAddresses $apimService.PrivateIPAddresses[0]
# step 9b - create sinkpool for API-M requests we want to discard
$sinkpool = New-AzApplicationGatewayBackendAddressPool -Name "sinkpool"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment