Mercurial > hg > cc > azure
view master/bin/internal/parse_load_balance.py @ 36:9d4f130073b8
merge the uploaded results of fixAndMerge
author | Henry S. Thompson <ht@markup.co.uk> |
---|---|
date | Thu, 29 Nov 2018 13:41:27 +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)