1
Fork 0
mirror of https://github.com/RGBCube/agenix synced 2025-07-28 01:07:43 +00:00

rename public_keys to publicKeys

more idiomatic
This commit is contained in:
Ryan Mulligan 2020-09-03 21:13:10 -07:00
parent 5e68735d26
commit c89ed72dc6
3 changed files with 5 additions and 5 deletions

View file

@ -3,6 +3,6 @@ let
system1 = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPJDyIr/FSz1cJdcoW69R+NrWzwGK/+3gJpqD1t8L2zE";
in
{
"secret1.age".public_keys = [ user1 system1 ];
"secret2.age".public_keys = [ user1 ];
"secret1.age".publicKeys = [ user1 system1 ];
"secret2.age".publicKeys = [ user1 ];
}