Skip to content

Instantly share code, notes, and snippets.

@matsest
Created February 16, 2022 11:19
Show Gist options
  • Save matsest/10896d706f29ca0d5f5f3addc8a827ae to your computer and use it in GitHub Desktop.
Save matsest/10896d706f29ca0d5f5f3addc8a827ae to your computer and use it in GitHub Desktop.
azure network tags
$serviceTagCollections = Get-AzNetworkServiceTag -Location "Norway East"
$serviceTags = $serviceTagCollections | Where-Object Name -eq "Public" | Select-Object -ExpandProperty Values
$regionalServices = $serviceTags | ? { $_.Properties.Region -like "norway*" }
$nonRegionalServices = $serviceTags | ? { -not $_.Properties.Region }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment