I have created a feed of O365 URLs filtering on expressRoute = True infilters:
- actions:
- accept
conditions:
- __method == 'withdraw'
name: accept withdraws
- actions:
- accept
conditions:
- o365_expressRoute == true
name: accept o365_expressRoute
- actions:
- drop
name: drop all All works fine... However, Comparing the results from Minemeld with the output from a bit of PowerShell, which does the same job. Minemeld does not include the URL *.outlook.office.com. (Invoke-WebRequest -Uri $EndpointUri | ConvertFrom-Json) | % {
if ($_.expressRoute) { $_.urls }
} I can not see why.
... View more