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
已提问 5 年前271 查看次数
1 回答
0
已接受的回答

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
专家
已回答 5 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则