LoginSignup
3
1

More than 5 years have passed since last update.

Azure Web AppsのOutbound IP address確認方法

Last updated at Posted at 2015-07-31

これは何?

アクセス元IP AddressをWhitelist形式で制限しているAPIやSaaSをWeb Appsから利用したい場合、
アクセス先のWhitelistに登録するIPを確認する方法。

確認方法

Azure Management Portal(新ポータル)から確認する

新ポータル
https://portal.azure.com/

Browse > All resources > {IPを確認したいWeb Appsインスタンス名} > Settings > Properties
の
Outbound IP Addresses

- 日本語表記だとこんな感じ
参照 > すべてのリソース > {IPを確認したいWeb Appsインスタンス名} > 設定 > プロパティ
の
Outbound IP Addresses

Azure CLIから確認する

azure resource show {resourceGroup} {name} {resourceType} {apiVersion}
ex. azure resource show Web-JapanWest nntsugu Microsoft.Web/sites 2015-04-01

で表示される
Property outboundIpAddresses
の値

パラメータの確認方法は下記参照

### resourceGroup

- Azure CLI
azure resource list の結果から探す

- Azure Resource Explorer で探す
https://resources.azure.com/


### name

Web Appsの名前そのまま。
ポータルのWeb Appsメニューに一覧が出ています。


### resourceType

Web Appsはこれ。
  Microsoft.Web/sites


### apiVersion

Service Management Versioning
https://msdn.microsoft.com/en-us/library/azure/gg592580.aspx

上記から確認できます。
2015/07/31時点での最新版は 2015-04-01

注意点

メンテナンスにより変更になるケースがあるようです。
事前告知があるはず。

参考
https://social.msdn.microsoft.com/Forums/azure/en-US/fd53afb7-14b8-41ca-bfcb-305bdeea413e/maintenance-notice-upcoming-changes-to-increase-capacity-for-outbound-network-calls?forum=windowsazurewebsitespreview

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1