summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/prometheus
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/monitoring/prometheus')
-rw-r--r--nixos/modules/services/monitoring/prometheus/minio-exporter.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixos/modules/services/monitoring/prometheus/minio-exporter.nix b/nixos/modules/services/monitoring/prometheus/minio-exporter.nix
index 4b6c96d9673..bc3967f8612 100644
--- a/nixos/modules/services/monitoring/prometheus/minio-exporter.nix
+++ b/nixos/modules/services/monitoring/prometheus/minio-exporter.nix
@@ -29,26 +29,32 @@ in {
       minioAddress = mkOption {
         type = types.str;
         example = "https://10.0.0.1:9000";
+        default = if config.services.minio.enable then "http://localhost:9000" else null;
         description = ''
           The URL of the minio server.
           Use HTTPS if Minio accepts secure connections only.
+          By default this connects to the local minio server if enabled.
         '';
       };
 
       minioAccessKey = mkOption {
         type = types.str;
         example = "BKIKJAA5BMMU2RHO6IBB";
+        default = if config.services.minio.enable then config.services.minio.accessKey else null;
         description = ''
           The value of the Minio access key.
           It is required in order to connect to the server.
+          By default this uses the one from the local minio server if enabled.
         '';
       };
 
       minioAccessSecret = mkOption {
         type = types.str;
+        default = if config.services.minio.enable then config.services.minio.secretKey else null;
         description = ''
           The calue of the Minio access secret.
           It is required in order to connect to the server.
+          By default this uses the one from the local minio server if enabled.
         '';
       };