mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-23 02:00:47 +03:00
Update docs to include example of armored output
This commit is contained in:
parent
af954310f1
commit
7133e545ff
2 changed files with 16 additions and 8 deletions
|
@ -266,6 +266,10 @@ e.g. inside your `flake.nix` file:
|
||||||
{
|
{
|
||||||
"secret1.age".publicKeys = [ user1 system1 ];
|
"secret1.age".publicKeys = [ user1 system1 ];
|
||||||
"secret2.age".publicKeys = users ++ systems;
|
"secret2.age".publicKeys = users ++ systems;
|
||||||
|
"armored-secret.age" = {
|
||||||
|
publicKeys = [ user1 ];
|
||||||
|
armor = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
These are the users and systems that will be able to decrypt the `.age` files later with their corresponding private keys.
|
These are the users and systems that will be able to decrypt the `.age` files later with their corresponding private keys.
|
||||||
|
|
|
@ -25,6 +25,10 @@
|
||||||
{
|
{
|
||||||
"secret1.age".publicKeys = [ user1 system1 ];
|
"secret1.age".publicKeys = [ user1 system1 ];
|
||||||
"secret2.age".publicKeys = users ++ systems;
|
"secret2.age".publicKeys = users ++ systems;
|
||||||
|
"armored-secret.age" = {
|
||||||
|
publicKeys = [ user1 ];
|
||||||
|
armor = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
4. Edit secret files (these instructions assume your SSH private key is in ~/.ssh/):
|
4. Edit secret files (these instructions assume your SSH private key is in ~/.ssh/):
|
||||||
|
|
Loading…
Reference in a new issue