Merge pull request #190498 from eskytthe/grafana-module-fix-text
nixos/grafana: fix description text error
This commit is contained in:
commit
6ee982a34e
1 changed files with 6 additions and 6 deletions
|
@ -628,18 +628,18 @@ in {
|
||||||
};
|
};
|
||||||
allowedDomains = mkOption {
|
allowedDomains = mkOption {
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
To limit access to authenticated users who are members of one or more groups,
|
Limits access to users who belong to specific domains.
|
||||||
set allowedGroups to a comma- or space-separated list of group object IDs.
|
Separate domains with space or comma.
|
||||||
You can find object IDs for a specific group on the Azure portal.
|
|
||||||
'';
|
'';
|
||||||
default = "";
|
default = "";
|
||||||
type = types.str;
|
type = types.str;
|
||||||
};
|
};
|
||||||
allowedGroups = mkOption {
|
allowedGroups = mkOption {
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
Limits access to users who belong to specific domains.
|
To limit access to authenticated users who are members of one or more groups,
|
||||||
Separate domains with space or comma.
|
set allowedGroups to a comma- or space-separated list of group object IDs.
|
||||||
'';
|
You can find object IDs for a specific group on the Azure portal.
|
||||||
|
'';
|
||||||
default = "";
|
default = "";
|
||||||
type = types.str;
|
type = types.str;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue