Skip to content

Instantly share code, notes, and snippets.

@LyftGalactic
Created May 2, 2019 07:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save LyftGalactic/ac330d297e8ac82bd2b2e78244d180fa to your computer and use it in GitHub Desktop.
Save LyftGalactic/ac330d297e8ac82bd2b2e78244d180fa to your computer and use it in GitHub Desktop.
A quick script to determine AWS Region from IP Address
from ipaddress import ip_network, ip_address
import json
import requests
import sys
def find_aws_region():
ip_json = requests.get('https://ip-ranges.amazonaws.com/ip-ranges.json')
#ip_json = json.load(open('ip-ranges.json'))
ip_json = ip_json.json()
prefixes = ip_json['prefixes']
my_ip = ip_address(sys.argv[1])
region = 'Unknown'
for prefix in prefixes:
if my_ip in ip_network(prefix['ip_prefix']):
region = prefix['region']
print(region)
break
return region
if __name__ == "__main__":
find_aws_region()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment