# aws-auth-proxy **Repository Path**: mirrors_coreos/aws-auth-proxy ## Basic Information - **Project Name**: aws-auth-proxy - **Description**: HTTP proxy that signs requests for upstream AWS endpoints - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #aws-auth-proxy [![Docker Repository on Quay](https://quay.io/repository/coreos/aws-auth-proxy/status "Docker Repository on Quay")](https://quay.io/repository/coreos/aws-auth-proxy) ##Installation pre-reqs: * go1.5 * [glide package manager](https://github.com/Masterminds/glide) ```sh #requires go1.5 export GO15VENDOREXPERIMENT=1 mkdir -p $GOPATH/src/github.com/coreos cd $GOPATH/src/github.com/coreos git clone https://github.com/coreos/aws-auth-proxy cd aws-auth-proxy glide install go build github.com/coreos/aws-auth-proxy ``` ##Example ```sh # aws elasticsearch example ./aws-auth-proxy \ -access-key=xxx \ -secret-key=xxxx \ -service-name=es \ -region-name= \ -upstream-host= \ -upstream-scheme=https \ -listen-address=":9200" ``` Your proxied elasticsearch endpoint is now here: [http://localhost:9200](http://localhost:9200) No more securing elastic search endpoints with IP addresses!