aws-name-server icon indicating copy to clipboard operation
aws-name-server copied to clipboard

DNS server that lets you look up ec2 instances by instance name

Results 7 aws-name-server issues
Sort by recently updated
recently updated
newest added

When I follow the instructions I get: ``` wget http://gobuild.io/github.com/ConradIrwin/aws-name-server/master/linux/amd64 -O aws-name-server.zip --2015-05-20 16:22:47-- http://gobuild.io/github.com/ConradIrwin/aws-name-server/master/linux/amd64 Resolving gobuild.io... 106.186.17.35 Connecting to gobuild.io|106.186.17.35|:80... connected. HTTP request sent, awaiting response... 400 Bad Request...

This is more of an informative issue. To get aws-name-server working with auth v4 requiring regions such as eu-central-1, you need to compile this using the following pull request. mitchellh/goamz#154

I don't think this should be merged, but I am sending this anyway so that people can build off of it until it gets fixed at upstream repo. Fixes ConradIrwin#13

if i have a tag for an instance like "mySuperAwesomeTag" using aws-name-server only lookups for "mysuperawesometag" will return results . whereas in the https://tools.ietf.org/html/rfc4343 sez to make things "case insensitive"...

this tool is great but i just created a patch that will allow arbitrary ec2 tags be used as a thing's dns name . seems shareworthy . --timball

Some way to support a custom tag hierarchy. For example: ``` aws-name-server --tag-hierarchy Name,Role,Env ... ``` This would allow names like: - `...aws.example.com` -> `skywalker.app.staging.aws.example.com` There are probably many edge...