secrets: improve description of generator script
All checks were successful
checks / checks (pull_request) Successful in 3m33s
checks / check-links (pull_request) Successful in 14s
checks / checks-impure (pull_request) Successful in 1m45s

This commit is contained in:
DavHau 2024-03-30 17:16:26 +07:00
parent 0f73a6e1cf
commit 72cc85cd2f

View File

@ -99,11 +99,11 @@
script = lib.mkOption {
type = lib.types.str;
description = ''
Script to generate the secret.
The script will be called with the following variables:
Shell script snippet to generate the secrets and facts.
The script has access to the following environment variables:
- facts: path to a directory where facts can be stored
- secrets: path to a directory where secrets can be stored
The script is expected to generate all secrets and facts defined in the module.
The script is expected to generate all secrets and facts defined for this service.
'';
};
finalScript = lib.mkOption {