nixos/prometheus: add password_file option to scrapeConfig's basic_auth (#123252)

This commit is contained in:
n0emis 2021-07-10 21:18:38 +02:00 committed by GitHub
parent 6152125110
commit 336494e19f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -323,15 +323,13 @@ let
HTTP username
'';
};
password = mkOption {
type = types.str;
description = ''
HTTP password
'';
};
password = mkOpt types.str "HTTP password";
password_file = mkOpt types.str "HTTP password file";
};
}) ''
Optional http login credentials for metrics scraping.
Sets the `Authorization` header on every scrape request with the
configured username and password.
password and password_file are mutually exclusive.
'';
bearer_token = mkOpt types.str ''