forked from rarias/bscpkgs
Reorganize secrets and ssh keys
The agenix tools needs to read the secrets from a standalone file, but we also need the same information for the SSH keys.
This commit is contained in:
13
secrets/secrets.nix
Normal file
13
secrets/secrets.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
let
|
||||
keys = import ../keys.nix;
|
||||
adminsKeys = builtins.attrValues keys.admins;
|
||||
hut = [ keys.hosts.hut ] ++ adminsKeys;
|
||||
# Only expose ceph keys to safe nodes and admins
|
||||
ceph = keys.hostGroup.safe ++ adminsKeys;
|
||||
in
|
||||
{
|
||||
"ovni-token.age".publicKeys = hut;
|
||||
"nosv-token.age".publicKeys = hut;
|
||||
|
||||
"ceph-user.age".publicKeys = ceph;
|
||||
}
|
||||
Reference in New Issue
Block a user