Init agenix

This commit is contained in:
teutat3s 2021-06-27 17:18:24 +02:00
parent e9d626f69c
commit 426e4ec460
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
2 changed files with 4 additions and 4 deletions

BIN
secrets/example-secret.age Normal file

Binary file not shown.

View file

@ -1,9 +1,9 @@
let
# set ssh public keys here for your system and user
system = "";
user = "";
allKeys = [ system user ];
dumpyourvms = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILDATEWAgDZFfYs1ZPh33Kg4sqQ9tWMVKyk8XqFu3Koe host@dumpyourvms";
teutat3s = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHcU6KPy4b1MQXd6EJhcYwbJu7E+0IrBZF/IP6T7gbMf teutat3s@dumpyourvms";
allKeys = [ dumpyourvms teutat3s ];
in
{
"secret.age".publicKeys = allKeys;
"example-secret.age".publicKeys = allKeys;
}