Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

aws cli ec2 list instances

# Get list of all EC2 (all info)
awsProfile="awsProfileName" # Use your aws profile name
aws --profile "$awsProfile" ec2 describe-instances

# Get list of all EC2 (custom filter)
awsProfile="awsProfileName" # Use your aws profile name
awsQuery="Reservations[].Instances[].{InstanceId:InstanceId,Placement:Placement,PrivateIpAddress:PrivateIpAddress,PublicIpAddress:PublicIpAddress,Tags:Tags}"
aws --profile "$awsProfile" ec2 describe-instances --query "$awsQuery"
 
PREVIOUS NEXT
Tagged: #aws #cli #list #instances
ADD COMMENT
Topic
Name
7+9 =