Files
splunk-security_content/macros/dynamic_dns_providers.yml
2024-01-30 20:52:05 +00:00

9 lines
568 B
YAML

definition: lookup update=true dynamic_dns_providers_default dynamic_dns_domains as
query OUTPUTNEW isDynDNS_default | lookup update=true dynamic_dns_providers_local
dynamic_dns_domains as query OUTPUTNEW isDynDNS_local| eval isDynDNS = coalesce(isDynDNS_local,isDynDNS_default)
|fields - isDynDNS_default, isDynDNS_local| search isDynDNS=True
description: This macro limits the output of the query field to dynamic dns domains.
It looks up the domains in a file provided by Splunk and one intended to be updated
by the end user.
name: dynamic_dns_providers