diff options
author | Alex <alex@adnab.me> | 2023-01-01 18:47:34 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-01-01 18:47:34 +0000 |
commit | 3847c081817d93e75ec9ef8d53d2961e13df74c3 (patch) | |
tree | bd820bfda887f355fe1e56f8a1418c9353c59eb2 /cluster/prod/app/guichet/secrets.toml | |
parent | ad6db2f1c502898e92fe377510dcf58b2d5ce6c9 (diff) | |
parent | 0d8c6a2d45c7b6bbb86f2d4268423578f0995894 (diff) | |
download | nixcfg-3847c081817d93e75ec9ef8d53d2961e13df74c3.tar.gz nixcfg-3847c081817d93e75ec9ef8d53d2961e13df74c3.zip |
Merge pull request 'updated version of secretmgr' (#5) from new-secretmgr into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/nixcfg/pulls/5
Diffstat (limited to 'cluster/prod/app/guichet/secrets.toml')
-rw-r--r-- | cluster/prod/app/guichet/secrets.toml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/cluster/prod/app/guichet/secrets.toml b/cluster/prod/app/guichet/secrets.toml new file mode 100644 index 0000000..d614b27 --- /dev/null +++ b/cluster/prod/app/guichet/secrets.toml @@ -0,0 +1,51 @@ +# General configuration + +[secrets."directory/guichet/web_hostname"] +type = 'user' +description = 'Public hostname from which Guichet is accessible via HTTP (e.g. guichet.example.com)' + + +# Mailing configuration + +[secrets."directory/guichet/smtp_user"] +type = 'user' +description = 'SMTP username' + +[secrets."directory/guichet/smtp_pass"] +type = 'user' +description = 'SMTP password' + +[secrets."directory/guichet/smtp_server"] +type = 'user' +description = 'SMTP server address (hostname:port)' + +[secrets."directory/guichet/mail_from"] +type = 'user' +description = 'E-mail address from which to send welcome emails to new users' + +[secrets."directory/guichet/mail_domain"] +type = 'user' +description = 'E-mail domain for new users (e.g. example.com)' + + +# S3 configuration + +[secrets."directory/guichet/s3_endpoint"] +type = 'user' +description = 'S3 endpoint URL' + +[secrets."directory/guichet/s3_bucket"] +type = 'user' +description = 'S3 bucket in which to store data files (such as profile pictures)' + +[secrets."directory/guichet/s3_region"] +type = 'user' +description = 'S3 region' + +[secrets."directory/guichet/s3_access_key"] +type = 'user' +description = 'Garage access key for Guichet profile pictures' + +[secrets."directory/guichet/s3_secret_key"] +type = 'user' +description = 'Garage secret key for Guichet profile pictures' |