すでに存在する Azure Application Gateway に、新しいバックエンドプールと、バックエンドで動作する VM を追加することを自動化する必要があったので、Azure Powershell にてスクリプト化しました。
$resourceGroupName = ""
$applicationGatewayName = ""
$backendpoolName = ""
$backendServerFqdn1 = ""
$backendServerFqdn2 = ""
# Application Gateway を取得
$applicationGateway = Get-AzApplicationGateway `
-Name $applicationGatewayName `
-ResourceGroupName $resourceGroupName
# Application Gateway に BackendPool とバックエンドのサーバー(FQDN指定)を追加
Add-AzApplicationGatewayBackendAddressPool `
-ApplicationGateway $applicationGateway `
-Name $backendpoolName `
-BackendFqdns $backendServerFqdn1, $backendServerFqdn2
# Application Gateway を有効化
Set-AzApplicationGateway `
-ApplicationGateway $applicationGateway
コメント