↧
Answer by Tensibai for What is the simplest way to list which attached disks...
To get the number of non encrypted volumes you can run this command:aws ec2 describe-volumes --region <your_region> --filter "Name=encrypted,Values=false" --query "length(Volumes[])"length will...
View ArticleAnswer by Romeo Ninov for What is the simplest way to list which attached...
According to this document you can run command like:aws ec2 describe-volumes --region us-east-1(feel free to set region you use)and search for field in json output, named "encrypted"
View ArticleWhat is the simplest way to list which attached disks are encrypted (and...
An auditor is asking for proof that we've encrypted all the disks on our AWS EC2 VPC. I'd like a way to list all the disks and whether they're encrypted or not. I know I can build a report with the AWS...
View Article