@JReynolds1 , The RQL you are utilziing is a join, which is specifically used for aggregating 2 api calls, and cross-correlating the information. If you are only trying to filter results within a single API call, you don't need to use a join. For the RQL it seems you are trying to gather, the proper RQL is below. config where api.name = 'aws-ec2-describe-internet-gateways' AND json.rule = attachments[*].vpcId exists You can find the full RQL Guide at the following location, which can also provide some assistance/guidance on RQL moving forward. https://docs.paloaltonetworks.com/redlock/redlock-rql-reference.html
... View more