List public IP addresses of EC2 instances

后端 未结 5 812
無奈伤痛
無奈伤痛 2020-12-13 08:46

I want to list the public IP addresses of my EC2 instances using Bash, separated by a delimiter (space or a new-line).

I tried to pipe the output to jq with aw

5条回答
  •  独厮守ぢ
    2020-12-13 09:20

    Directly from the aws cli:

    aws ec2 describe-instances \
      --query "Reservations[*].Instances[*].PublicIpAddress" \
      --output=text
    

提交回复
热议问题