Does the Asset Inventory include all Public IP Addresses? or is this need to be a feature request?
Solved! Go to Solution.
Asset Inventory currently only include resources and objects returned from metadata scans. It doesn't include a list of public IPs, so this would need a feature request.
Asset Inventory currently only include resources and objects returned from metadata scans. It doesn't include a list of public IPs, so this would need a feature request.
Thanks for the update, Is there a portal for feature requests as of yet for Prisma Public Cloud?
Not as of yet, but you can file a support ticket and note that it is a feature request and put the request in the body.
Three RQL querries for Amazon:
config where api.name = 'aws-ec2-describe-instances' addcolumn privateIpAddress
config where api.name = 'aws-ec2-describe-instances' and json.rule = publicIpAddress exists
config where api.name = 'aws-ec2-describe-instances' AND json.rule = publicIpAddress exists and publicIpAddress is not empty
Is there an Azure equivalent to aws-ec2-describe-instances?
Yes, config where api.name = 'azure-vm-list' is the direct equivalent.
For your use case, you can try:
config where api.name = 'azure-vm-list' AND json.rule = ['properties.networkProfile'].networkInterfaces[*].publicIpAddressId exists
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!