https://github.com/dominikschulz/aws-metadata-server
Development AWS Instance Metadata Server
https://github.com/dominikschulz/aws-metadata-server
aws developer-tools metadata
Last synced: 3 months ago
JSON representation
Development AWS Instance Metadata Server
- Host: GitHub
- URL: https://github.com/dominikschulz/aws-metadata-server
- Owner: dominikschulz
- License: mit
- Created: 2015-12-29T12:31:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-29T12:31:38.000Z (over 10 years ago)
- Last Synced: 2025-12-28T19:00:14.624Z (6 months ago)
- Topics: aws, developer-tools, metadata
- Language: Go
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-metdata-server
aws-metadata-server is a very simple AWS compatible meta-data / user-data
server for local development. It does not support any kind of security and
SHOULD NOT be run anywhere remotely publicly accessible. It's only meant to
be run on a developers machine, preferable in a virtual machine with
limited network scope.
## Usage
* Build with ```go build```
* Add the well known IP 169.254.169.254, e.g. with iproute2 (linux): ```ip route add 169.254.169.254/32 dev eth0```
* Start as root (so it can bind to Port 80, sorry): ```sudo ./aws-metadata-server```
* Set the keys you need to their desired values, e.g. ```curl -i -X POST -d 'us-east-1a' http://169.254.169.254/latest/meta-data/placement/availability-zone```