diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-09-21 16:29:49 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-09-21 16:29:49 +0200 |
commit | 9e4e2f7b99ab8816afcf51e9575d75ccf73fb23f (patch) | |
tree | 7219b5a11bec1ce2aa439aa463f414b2f4408184 /app/config/secrets | |
parent | 09fc30214da3febbf9c06a81bd52701f370be67e (diff) | |
download | infrastructure-9e4e2f7b99ab8816afcf51e9575d75ccf73fb23f.tar.gz infrastructure-9e4e2f7b99ab8816afcf51e9575d75ccf73fb23f.zip |
Add plume
Diffstat (limited to 'app/config/secrets')
-rw-r--r-- | app/config/secrets/.gitignore | 1 | ||||
-rwxr-xr-x | app/config/secrets/plume/pgsql_pw.sh | 2 | ||||
-rwxr-xr-x | app/config/secrets/plume/secret_key.sh | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/app/config/secrets/.gitignore b/app/config/secrets/.gitignore index 1d7b40b..2ff3cd5 100644 --- a/app/config/secrets/.gitignore +++ b/app/config/secrets/.gitignore @@ -5,6 +5,7 @@ # Whitelist some patterns !*.sample !*.gen +!*.sh !.gitignore # Whitelist specific files diff --git a/app/config/secrets/plume/pgsql_pw.sh b/app/config/secrets/plume/pgsql_pw.sh new file mode 100755 index 0000000..519a30a --- /dev/null +++ b/app/config/secrets/plume/pgsql_pw.sh @@ -0,0 +1,2 @@ +#!/bin/bash +openssl rand -base64 32 > pgsql_pw diff --git a/app/config/secrets/plume/secret_key.sh b/app/config/secrets/plume/secret_key.sh new file mode 100755 index 0000000..f4bbee5 --- /dev/null +++ b/app/config/secrets/plume/secret_key.sh @@ -0,0 +1,2 @@ +#!/bin/bash +openssl rand -base64 32 > secret_key |