次のコマンドをインストールしておく。
名前が 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