...
To create a match for the other Device Pools we need to create new mappings or modify existing mappings. Let’s create new ones. To match C01-Sydney-DP, we can create an entry, C01-${siteId}-DP which will generate a site suggestion called Sydney, for the other 4 device pools, we create an entry ${siteId} which will create 4 site suggestions devPoolNorth, devPoolSouth, devPoolSpecial, devPoolWest
These 2 entries will Match the Device Pool naming’s above. Together with the previously defined, we would end up with Site Suggestion names as follows:
...
Now, these are all based on using the default siteId Regex. This regex may be modified as required for different matching. The Regexes can be found in Wrangler under
Mappings -> Mapping Tables->Mapping Regexes
Here we can see that the siteId regex is ([a-ZA-Z0-9]+). This effectively matches any string combination of alphanumeric characters without any separations such as space or – (hyphen) etc.
...