MyNixOS website logo
option

services.prometheus.exporters.dnssec.configuration

dnssec exporter configuration as nix attribute set.

See https://github.com/chrj/prometheus-dnssec-exporter/blob/master/README.md for the description of the configuration file format.

Declarations
Type
null or (attribute set)
Default
null
Example
{
  records = [
    {
      zone = "ietf.org";
      record = "@";
      type = "SOA";
    }
    {
      zone = "verisigninc.com";
      record = "@";
      type = "SOA";
    }
  ];
}