feat(sterni/ingeborg): make secrets available

Change-Id: I2a39a6e5125e95c4ea10836694b594d068ceda73
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10178
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
This commit is contained in:
sterni 2023-11-30 18:38:31 +01:00
parent 60ca9ba437
commit 6a5faac11d
5 changed files with 30 additions and 22 deletions

View file

@ -3,13 +3,14 @@ let
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJk+KvgvI2oJTppMASNUfMcMkA2G5ZNt+HnWDzaXKLlo"
];
edwin = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+OZ8f++cnvd4E2kFyn9jEoVpxi7LfjRvyQwzE8a5Ll"
ingeborg = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+OZ8f++cnvd4E2kFyn9jEoVpxi7LfjRvyQwzE8a5Ll" # edwin (legacy)
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAHQn/j6NCYucpM7qIEIslVJxiFeUEKa0hi+HobTz/12"
];
in
{
"warteraum-salt.age".publicKeys = nonremote ++ edwin;
"warteraum-tokens.age".publicKeys = nonremote ++ edwin;
"minecraft-rcon.age".publicKeys = nonremote ++ edwin;
"warteraum-salt.age".publicKeys = nonremote ++ ingeborg;
"warteraum-tokens.age".publicKeys = nonremote ++ ingeborg;
"minecraft-rcon.age".publicKeys = nonremote ++ ingeborg;
}