Using the AWS CLI to Collect Amazon Elastic Block Store (EBS) Information

Share on:

Most of my recent blogs have been focused on not just how to “do” something, but provide some information on how things work. This specific blog will cover how we can use the AWS CLI to gather information and format it in a way that is useful. This collection will provide not only information about an EBS volume, but also the instance that is attached, identify the boot volumes and even provide the instance type.

You may be asking why is this important? Well theres many things that go into this. It may be useful to understand the instances that you have within your environment and the types of disks. Maybe you want to move from one storage type to another and want to make sure the instances are sized appropriately.

In my case here at Pure Storage, we help optimize customers cloud storage spend by providing Pure Cloud Block Store. When an EC2 VM uses Cloud Block Store, it can be used for all of the data volumes–the boot volume will still live on EBS.

Pre-Requisite

Using the Code

My initial use case of this script was to gather all of the existing EBS Volumes and identify which disk was allocated as the root or boot volume so these could be excluded when it comes to sizing.

There are two versions of this script. The first will gather all volumes and instances for a specific region, the second will gather all volumes and instances for all regions.

The first example pulls in details for one specific region for both instances and volumes and presents them in a consolidated view for the multiple queries.

Here is an example output, no Header View, however you can see what each column is based on the Query Fields in the AWS CLI command.

If you are looking to pull in all details for all regions in your account you can use the following code.

Conclusion

Huge thanks to Vincent Lee at Ahead who provided some samples I was able to modify to meet the requirements.

This way to collect data via CLI and combine it via files is new to me, but is definitely something I will continue to use. Looking forward to seeing how else we can expand on collecting info and hopefully it these queries will come to the AWS Powershell Module soon too!

comments powered by Disqus

See Also