aws-name-server
                                
                                 aws-name-server copied to clipboard
                                
                                    aws-name-server copied to clipboard
                            
                            
                            
                        Binary download down (gobuild.io error)
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
2015-05-20 16:22:49 ERROR 400: Bad Request.
+1
i tried building it from source and couldn't do it either
go build main.go
command-line-arguments
--domain="example.com"
--aws-region="us-east-1" 
--aws-secret-access-key="shhh-secret" 
--aws-access-key-id="access-key" \
Returns me this
./main.go:62: undefined: NewEC2Cache ./main.go:71: undefined: NewEC2Server
@ecasilla Run go build with no arguments (if you pass a filename it builds just that one file, but you want it to to build the entire directory). Then run ./aws-name-server with the arguments you need.
Thanks