secrets: automatically detect and configure secrets
This commit is contained in:
parent
ad3d98f637
commit
1b8b074dc5
1
hosts/clerie-backup/ssh.pub
Normal file
1
hosts/clerie-backup/ssh.pub
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBsTlqDyK726hwhX8lbs9EhMrkf3LsKIm5Ya3k39C7VZ
|
28
secrets.nix
28
secrets.nix
@ -1,10 +1,20 @@
|
|||||||
let
|
let
|
||||||
users = {
|
pubkeysFor = directory: let
|
||||||
clerie = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIzEQEWeunhkzP+invKjdsZe4rbUloixa374bYEhBSA5 clerie_id";
|
instances = builtins.attrNames (builtins.readDir directory);
|
||||||
};
|
instancesWithPubkey = builtins.filter (i: builtins.pathExists (directory + "/${i}/ssh.pub")) instances;
|
||||||
hosts = {
|
in
|
||||||
clerie-backup = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBsTlqDyK726hwhX8lbs9EhMrkf3LsKIm5Ya3k39C7VZ";
|
builtins.listToAttrs (map (i: { name = i; value = builtins.readFile (directory + "/${i}/ssh.pub"); }) instancesWithPubkey);
|
||||||
};
|
|
||||||
in {
|
users = pubkeysFor ./users;
|
||||||
"hosts/clerie-backup/secrets/restic-server-cyan-htpasswd.age".publicKeys = [ users.clerie hosts.clerie-backup ];
|
hosts = pubkeysFor ./hosts;
|
||||||
}
|
|
||||||
|
secretsForHost = hostname: let
|
||||||
|
secretsFiles = builtins.attrNames (builtins.readDir (./hosts + "/${hostname}/secrets"));
|
||||||
|
listOfSecrets = builtins.filter (i: (builtins.stringLength i) > 4 && builtins.substring ((builtins.stringLength i) - 4) (builtins.stringLength i) i == ".age") secretsFiles;
|
||||||
|
in
|
||||||
|
if builtins.pathExists (./hosts + "/${hostname}/secrets") && builtins.pathExists (./hosts + "/${hostname}/ssh.pub") then
|
||||||
|
map (secret: { name = "hosts/${hostname}/secrets/${secret}"; value = { publicKeys = [ users.clerie hosts."${hostname}" ]; }; }) (listOfSecrets ++ [ "new" ])
|
||||||
|
else
|
||||||
|
[];
|
||||||
|
in
|
||||||
|
builtins.listToAttrs (builtins.concatMap (hostname: secretsForHost hostname) (builtins.attrNames (builtins.readDir ./hosts)))
|
||||||
|
Loading…
Reference in New Issue
Block a user