Static server for A records in r53 zones.
based on jessfraz/s3server
$ ./r53Server -h
Server to index & view records in r53 zones.
Version: v0.2.0
Build: 6ce6dfd
-aws-access-key-id string
AWS access key
-aws-secret-access-key string
AWS access secret
-config string
config file (default "config.yaml")
-interval string
interval to generate new index.html's at (default "5m")
-p string
port for server to run on (default "8080")
-v print version and exit (shorthand)
-version
print version and exit
config.yaml
format
# roleArn `none` is special keyword
roles:
- roleArn: none
zones:
- Z...
- roleArn: "arn:aws:iam::..."
zones:
- Z...
docker run -d \
-p 8080:8080 \
-e AWS_ACCESS_KEY_ID \
-e AWS_SECRET_ACCESS_KEY \
-v $PWD/config.yaml:/config.yaml \
--tmpfs /tmp \
quay.io/swo0k/r53server:v0.2.0 \
-p 8080