Global Artifact Lookup by CIDR

If I had a Global Artifact that one value is a CIDR and the other value is a VLAN, could I do a lookup of an IP and if it is in the CIDR range, return the VLAN?

Its going to be possible, if not a little drawn out. The subnet plugin allows you to check if an IP is in a subnet so you’d technically have to loop through all values in the GA to see if there is a match, but shouldn’t be difficult if you add a third boolean value set to true in your GA. You can then just pull all values in that column that match true and loop through them. Outside of that you could also use the ip function in a python step to do it a little cleaner.