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

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ