Identifying EC2 Instance Store Volumes

0

A customer wants to find an automated way to identify EC2 Instance Store Volumes for a fleet of their Linux instances. Is there a way to do so that doesn't require logon to each Linux instance?

AWS
asked 5 years ago242 views
1 Answer
0
Accepted Answer

Hi,

One way is to use the instance metadata service, but that would rely on connecting to each instance in turn. However, we know that the block device mapping can tell us if a volume is EBS-based or instance store-based. If a volume is instance store based, then the mapping will name it ephemeral[0-23], for example ephemeral4. Outside of logging on to an instance, we can use the EC2 API to get the block device mappings, a little like so:

ec2 describe-instances

will return you a list of Instance IDs, which you can then pass in (using a loop, likely best) to:

ec2 describe instance-attribute --attribute block-device-mapping --instance-id $id

It shouldn't be too hard to polish that in to a nice bit of Bash etc. you can run on a loop.

AWS
EXPERT
answered 5 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions