remove postgresql passwords where they are unneeded

This commit is contained in:
Rouven Seifert 2023-07-19 17:44:49 +02:00
parent 6d28293c86
commit defc2f2324
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
5 changed files with 6 additions and 50 deletions

View file

@ -4,10 +4,6 @@ let
in
{
sops.secrets = {
postgres_nextcloud = {
owner = "nextcloud";
group = "nextcloud";
};
nextcloud_adminpass = {
owner = "nextcloud";
group = "nextcloud";
@ -42,7 +38,6 @@ in
dbuser = "nextcloud";
dbhost = "/run/postgresql";
dbname = "nextcloud";
dbpassFile = config.sops.secrets.postgres_nextcloud.path;
adminpassFile = config.sops.secrets.nextcloud_adminpass.path;
adminuser = "root";
};