Merge pull request 'secrets: improve description of generator script' (#1067) from DavHau-dave into main
All checks were successful
checks / check-links (push) Successful in 14s
checks / checks (push) Successful in 33s
checks / checks-impure (push) Successful in 1m44s

This commit is contained in:
clan-bot 2024-03-30 10:22:40 +00:00
commit ec105d8ef8

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 {