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. Snmp exporter configuration as nix attribute set. Mutually exclusive with 'configurationPath' option.
''; '';
example = { example = {
"default" = { auths.public_v2 = {
"version" = 2; community = "public";
"auth" = { version = 2;
"community" = "public";
};
}; };
}; };
}; };

View File

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