Skip to content
On this page

📆 2022-10-05

AWS サブネットの利用可能なIPアドレス数を確認するコマンド

#Command #AWS

次のコマンドをインストールしておく。

名前が hoge- から始まるサブネットの残IPアドレス数を調べるコマンドはこちら

bash
aws ec2 describe-subnets | \
  jq -r '.Subnets[] | select(.Tags[].Key == "Name" and (.Tags[].Value | test("^hoge-"))) | (.Tags[] | select (.Key == "Name")).Value + ": " + (.AvailableIpAddressCount|tostring)'

出力はこちら。

bash
hoge-1: 100
hoge-2: 200

Released under the MIT License.