add db role

This commit is contained in:
asyncnomi 2025-08-02 00:09:30 +02:00
parent 18351a41f3
commit f05ce3bca5
5 changed files with 123 additions and 0 deletions

View file

@ -36,4 +36,15 @@
./shared/mail.nix
];
};
db = rec {
master = "db-mtz-lasuite-federez";
slaves = [
"db-ren-lasuite-federez"
];
hosts = [ master ] ++ slaves;
_inherit = [
./shared/db.nix
];
};
}