Skip to content

Commit da17089

Browse files
alexsong93mhamann
authored andcommitted
Add option to encrypt redis password (#302)
1 parent 86e5fdc commit da17089

File tree

5 files changed

+14
-1
lines changed

5 files changed

+14
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ FROM alpine:latest
2626
# install dependencies
2727
RUN apk --update add \
2828
gcc tar libtool zlib jemalloc jemalloc-dev perl \
29-
ca-certificates wget make musl-dev openssl-dev pcre-dev g++ zlib-dev curl python \
29+
ca-certificates wget make musl-dev openssl-dev openssl pcre-dev g++ zlib-dev curl python \
3030
perl-test-longstring perl-list-moreutils perl-http-message geoip-dev dumb-init jq \
3131
&& update-ca-certificates \
3232
&& rm -rf /var/cache/apk/*

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ docker-run:
5858
docker run --rm --name="apigateway" -p 80:80 -p ${PUBLIC_MANAGEDURL_PORT}:8080 -p 9000:9000 \
5959
-e PUBLIC_MANAGEDURL_HOST=${PUBLIC_MANAGEDURL_HOST} -e PUBLIC_MANAGEDURL_PORT=${PUBLIC_MANAGEDURL_PORT} \
6060
-e REDIS_HOST=${REDIS_HOST} -e REDIS_PORT=${REDIS_PORT} -e REDIS_PASS=${REDIS_PASS} \
61+
-e DECRYPT_REDIS_PASS=${DECRYPT_REDIS_PASS} -e ENCRYPTION_KEY=${ENCRYPTION_KEY} -e ENCRYPTION_IV=${ENCRYPTION_IV} \
6162
-e TOKEN_GOOGLE_URL=https://www.googleapis.com/oauth2/v3/tokeninfo \
6263
-e TOKEN_FACEBOOK_URL=https://graph.facebook.com/debug_token \
6364
-e TOKEN_GITHUB_URL=https://api.github.com/user \

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ docker run -p 80:80 -p <managedurl_port>:8080 -p 9000:9000 \
5050
openwhisk/apigateway:latest
5151
```
5252

53+
(Optional) The redis password can be passed in encrypted using the `aes-256-cbc` encryption algorithm. To do so, pass in the following environment variables, in addition to the encrypted password:
54+
- `DECRYPT_REDIS_PASS=true`
55+
- `ENCRYPTION_KEY=<32 Byte hex string that was used for encryption>`
56+
- `ENCRYPTION_IV=<16 Byte hex string that was used for encryption>`
57+
5358
## API
5459
- [v2 Management Interface](https://github.com/openwhisk/openwhisk-apigateway/blob/master/doc/v2/management_interface_v2.md)
5560
- [v1 Management Interface](https://github.com/openwhisk/openwhisk-apigateway/blob/master/doc/v1/management_interface_v1.md)

api-gateway.conf

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ env TOKEN_GOOGLE_URL;
4343
env TOKEN_FACEBOOK_URL;
4444
env TOKEN_GITHUB_URL;
4545

46+
env ENCRYPTION_KEY;
47+
env ENCRYPTION_IV;
48+
4649

4750
events {
4851
use epoll;

init.sh

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ log_level=${LOG_LEVEL:-warn}
2121
marathon_host=${MARATHON_HOST}
2222
redis_host=${REDIS_HOST}
2323
redis_port=${REDIS_PORT}
24+
if [ "${DECRYPT_REDIS_PASS}" == "true" ]; then
25+
export REDIS_PASS=$(printf "${REDIS_PASS}\n" | openssl enc -d -K ${ENCRYPTION_KEY} -iv ${ENCRYPTION_IV} -aes-256-cbc -base64)
26+
fi
27+
2428
sleep_duration=${MARATHON_POLL_INTERVAL:-5}
2529
# location for a remote /etc/api-gateway folder.
2630
# i.e s3://api-gateway-config

0 commit comments

Comments
 (0)