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:
parent
d4492abe66
commit
a8ea9fe492
2 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue