Creating AG's backend pool with no target.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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