summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/monitoring/prometheus/exporters/unifi.nix')
-rw-r--r--nixos/modules/services/monitoring/prometheus/exporters/unifi.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix b/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix
index 8d0e8764001c..70f26d9783be 100644
--- a/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix
+++ b/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix
@@ -11,7 +11,7 @@ in
unifiAddress = mkOption {
type = types.str;
example = "https://10.0.0.1:8443";
- description = ''
+ description = lib.mdDoc ''
URL of the UniFi Controller API.
'';
};
@@ -19,7 +19,7 @@ in
unifiInsecure = mkOption {
type = types.bool;
default = false;
- description = ''
+ description = lib.mdDoc ''
If enabled skip the verification of the TLS certificate of the UniFi Controller API.
Use with caution.
'';
@@ -28,14 +28,14 @@ in
unifiUsername = mkOption {
type = types.str;
example = "ReadOnlyUser";
- description = ''
+ description = lib.mdDoc ''
username for authentication against UniFi Controller API.
'';
};
unifiPassword = mkOption {
type = types.str;
- description = ''
+ description = lib.mdDoc ''
Password for authentication against UniFi Controller API.
'';
};
@@ -44,7 +44,7 @@ in
type = types.str;
default = "5s";
example = "2m";
- description = ''
+ description = lib.mdDoc ''
Timeout including unit for UniFi Controller API requests.
'';
};