Is there a way to look up the region of an instance from within the instance?
I\'m looking for something similar to the method of finding the instance id.
This is the cleanest solution I found:
curl -s http://169.254.169.254/latest/dynamic/instance-identity/document |sed -n 's/ "region" : "\(.*\)"/\1/p'
E.g.,
export REGION=$(curl -s http://169.254.169.254/latest/dynamic/instance-identity/document |sed -n 's/ "region" : "\(.*\)"/\1/p')