Mercurial > hg > cc > azure
view master/bin/internal/parse_load_balance.py @ 32:9342f6269edf
rewritten to be faster, maybe, and avoid earlier bug
author | Henry S. Thompson <ht@markup.co.uk> |
---|---|
date | Tue, 20 Nov 2018 10:31:05 +0000 |
parents | a7637c994964 |
children |
line wrap: on
line source
#!/usr/bin/env python3 #Parses the output of az network lb show --resource-group $resource --name ${name}LB -o json #Prints a table of instanceId and port. import sys import json if len(sys.argv) == 2: ip = " " + sys.argv[1] else: ip = "" for m in json.load(sys.stdin)['inboundNatRules']: print(m['name'].split('.')[-1] + ' ' + str(m['frontendPort']) + ip)