2017-02-24 00:43:48 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
from .responses import InstanceMetadataResponse
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
url_bases = ["http://169.254.169.254"]
|
2017-02-24 00:43:48 +00:00
|
|
|
|
|
|
|
instance_metadata = InstanceMetadataResponse()
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
url_paths = {"{0}/(?P<path>.+)": instance_metadata.metadata_response}
|