Simple Local AWS ElasticSearch Service proxy
456
Easily utilise curl, Sense and other tools of your liking to get answers from your AWS hosted ElasticSearch Service while developing or debugging.
aws-es-proxy is a dead simple local proxy, that knows how to sign your requests and talk to a hosted AWS ElasticSearch Service.
AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEYaws-cli authentication profile (defaults to profile default)$ aws-es-proxy --port 9200 --profile default --region eu-west-1 <elastichsearch_url>
Fires up simple node HTTP proxy on port 9200 and signs your requests using aws-sdk using your default local AWS profile.
$ curl http://localhost:9200
{
"status" : 200,
"name" : "Superia",
"cluster_name" : "123456789:search",
"version" : {
"number" : "1.5.2",
"build_hash" : "20085dbc168df96c59c4be65f2999990762dfc6f",
"build_timestamp" : "2016-04-20T15:51:59Z",
"build_snapshot" : false,
"lucene_version" : "4.10.4"
},
"tagline" : "You Know, for Search"
}
docker build -t aws-es-proxy .
Run and specify credentials via ENV variables.
docker run -it --rm -p 9210:9200 \
-e AWS_ACCESS_KEY_ID=... \
-e AWS_SECRET_ACCESS_KEY=... \
aws-es-proxy -- <elasticsearch_url>
Utilise configuration and profiles from the host.
docker run -it -v $HOME/.aws:/root/.aws --rm -p 9210:9200 \
aws-es-proxy -- --profile <profile_name> <elasticsearch_url>
Content type
Image
Digest
Size
253.6 MB
Last updated
about 9 years ago
docker pull ditchitall/aws-es-proxy