nist_nvd_cves data source

blackstork/nist_nvd, v0.4.2

Installation

To use nist_nvd_cves data source, you must install the plugin blackstork/nist_nvd.

To install the plugin, add the full plugin name to the plugin_versions map in the Fabric global configuration block (see Global configuration for more details), as shown below:

fabric {
  plugin_versions = {
    "blackstork/nist_nvd" = ">= v0.4.2"
  }
}

Note the version constraint set for the plugin.

Configuration

The data source supports the following configuration arguments:

config data nist_nvd_cves {
  # Optional string.
  # Default value:
  api_key = null
}

Usage

The data source supports the following execution arguments:

data nist_nvd_cves {
  # Optional string.
  # Default value:
  last_mod_start_date = null

  # Optional string.
  # Default value:
  last_mod_end_date = null

  # Optional string.
  # Default value:
  pub_start_date = null

  # Optional string.
  # Default value:
  pub_end_date = null

  # Optional string.
  # Default value:
  cpe_name = null

  # Optional string.
  # Default value:
  cve_id = null

  # Optional string.
  # Default value:
  cvss_v3_metrics = null

  # Optional string.
  # Default value:
  cvss_v3_severity = null

  # Optional string.
  # Default value:
  cwe_id = null

  # Optional string.
  # Default value:
  keyword_search = null

  # Optional string.
  # Default value:
  virtual_match_string = null

  # Optional string.
  # Default value:
  source_identifier = null

  # Optional bool.
  # Default value:
  has_cert_alerts = null

  # Optional bool.
  # Default value:
  has_kev = null

  # Optional bool.
  # Default value:
  has_cert_notes = null

  # Optional bool.
  # Default value:
  is_vulnerable = null

  # Optional bool.
  # Default value:
  keyword_exact_match = null

  # Optional bool.
  # Default value:
  no_rejected = null

  # Optional number.
  # Default value:
  limit = null
}