interactive_secrets #885

Merged
clan-bot merged 8 commits from interactive_secrets into main 2024-03-03 06:15:44 +00:00
Showing only changes of commit f500aee786 - Show all commits

View File

@ -35,13 +35,13 @@
options.clanCore.secrets = lib.mkOption {
default = { };
type = lib.types.attrsOf
(lib.types.submodule (secret: {
(lib.types.submodule (service: {
options = {
name = lib.mkOption {
type = lib.types.str;
default = secret.config._module.args.name;
default = service.config._module.args.name;
description = ''
Namespace of the secret
Namespace of the service
'';
};
generator = lib.mkOption {