[aws] Add iops to aws_ebs() output

This commit is contained in:
Daniel Carrillo 2020-03-25 12:18:35 +01:00
parent 0c22054a49
commit 7fbedf4a3b
1 changed files with 1 additions and 1 deletions

View File

@ -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 {