From 7fbedf4a3b73808050d50b0e39924a716e73b1e3 Mon Sep 17 00:00:00 2001 From: dcarrillo Date: Wed, 25 Mar 2020 12:18:35 +0100 Subject: [PATCH] [aws] Add iops to aws_ebs() output --- modules/aws/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aws/init.zsh b/modules/aws/init.zsh index bd6d2bc..bd13675 100644 --- a/modules/aws/init.zsh +++ b/modules/aws/init.zsh @@ -33,7 +33,7 @@ function aws_i { function aws_ebs { local profile=$(_get_aws_profile) aws ec2 describe-volumes --profile $profile --output ${_aws_output} \ - --query 'Volumes[].[Tags[?Key==`Name`] | [0].Value, VolumeId, Attachments[0].InstanceId, Size, AvailabilityZone]' + --query 'Volumes[].[Tags[?Key==`Name`] | [0].Value, VolumeId, Attachments[0].InstanceId, Size, VolumeType, Iops, AvailabilityZone]' } function aws_elb {