Which RQL string searches for all EBS volumes that do not have a "DataClassification" tag?
config where api.name = 'aws-ec2-describe-volumes, AND json.rule = tags[*]key contains DataClassification
config where api.name = ,aws-ec2-describe-volumes' AND json.rule = tags[*]key != DataClassification
config where api.name = ,aws-ec2-describe-volumes' AND json.rule = tags[*].key exists
config where api.name = 'aws-ec2-describe-volumes' AND json.rule = tags[*].key = 1
Submit