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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南