cli/secrets: show hint in --help on how to retrieve a key #1074

Merged
clan-bot merged 1 commits from DavHau-dave into main 2024-04-02 07:40:54 +00:00

View File

@ -116,7 +116,9 @@ def register_users_parser(parser: argparse.ArgumentParser) -> None:
add_parser.add_argument("user", help="the name of the user", type=user_name_type)
add_parser.add_argument(
"key",
help="public key or private key of the user",
help="public key or private key of the user."
"Execute 'clan secrets key --help' on how to retrieve a key."
"To fetch an age key from an SSH host key: ssh-keyscan <domain_name> | nix shell nixpkgs#ssh-to-age -c ssh-to-age",
type=public_or_private_age_key_type,
)
add_parser.set_defaults(func=add_command)