nixos/prometheus-snmp-exporter: switch to new config syntax

Introduced with version 0.23.0, see
b75fc6b839/auth-split-migration.md
This commit is contained in:
WilliButz 2024-01-12 18:40:31 +01:00
parent d4492abe66
commit a8ea9fe492
No known key found for this signature in database
GPG key ID: 0EFE04FB95E18413
2 changed files with 8 additions and 8 deletions

View file

@ -24,11 +24,9 @@ in
Snmp exporter configuration as nix attribute set. Mutually exclusive with 'configurationPath' option.
'';
example = {
"default" = {
"version" = 2;
"auth" = {
"community" = "public";
};
auths.public_v2 = {
community = "public";
version = 2;
};
};
};

View file

@ -1392,9 +1392,11 @@ let
snmp = {
exporterConfig = {
enable = true;
configuration.default = {
version = 2;
auth.community = "public";
configuration = {
auths.public_v2 = {
community = "public";
version = 2;
};
};
};
exporterTest = ''