summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/grafana.nix
diff options
context:
space:
mode:
authorErik Skytthe <ers@dbc.dk>2022-09-09 15:11:27 +0200
committerErik Skytthe <ers@dbc.dk>2022-09-09 15:55:15 +0200
commit3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af (patch)
tree914fe0e59d7fbd179551d3ec92fa1830552a10c0 /nixos/modules/services/monitoring/grafana.nix
parent17327cd341e855bdde3ea21354db6dcada95253d (diff)
downloadnixpkgs-3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af.tar
nixpkgs-3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af.tar.gz
nixpkgs-3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af.tar.bz2
nixpkgs-3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af.tar.lz
nixpkgs-3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af.tar.xz
nixpkgs-3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af.tar.zst
nixpkgs-3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af.zip
nixos/grafana: fix description text error
Description text has been placed incorrectly for allowedDomains and allowedGroups
Diffstat (limited to 'nixos/modules/services/monitoring/grafana.nix')
-rw-r--r--nixos/modules/services/monitoring/grafana.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index dd99fa3ddcc..fd3418b8f6b 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -628,18 +628,18 @@ in {
         };
         allowedDomains = mkOption {
           description = lib.mdDoc ''
-            To limit access to authenticated users who are members of one or more groups,
-            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.
+            Limits access to users who belong to specific domains.
+            Separate domains with space or comma.
           '';
           default = "";
           type = types.str;
         };
         allowedGroups = mkOption {
           description = lib.mdDoc ''
-            Limits access to users who belong to specific domains.
-            Separate domains with space or comma.
-          '';
+            To limit access to authenticated users who are members of one or more groups,
+            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 = "";
           type = types.str;
         };