Using Yaml instead JSON by the configuration file

This commit is contained in:
Jesús Ángel González 2018-01-24 15:28:02 +01:00 committed by Javier Castro
parent a2ed291adc
commit fe25d449bf
2 changed files with 24 additions and 16 deletions

View File

@ -1,16 +0,0 @@
{
"pattern": "wazuh-alerts-3.x-*",
"checks" : {
"pattern" : true,
"template": true,
"api" : true,
"setup" : true
},
"extensions": {
"audit" : true,
"pci" : true,
"oscap" : true,
"aws" : false,
"virustotal": false
}
}

24
config.yml Normal file
View File

@ -0,0 +1,24 @@
---
# Wazuh App configuration file
# https://github.com/wazuh/wazuh-kibana-app
# Default index pattern to use.
pattern: wazuh-alerts-3.x-*
# Defines which checks must to be consider by the healthcheck step once the Wazuh App starts.
# Values must to be true or false.
checks:
pattern : true
template: false
api : true
setup : false
# Defines which extensions should be activated when you add a new API entry.
# You can change them after Wazuh App starts.
# Values must to be true or false.
extensions:
audit : false
pci : false
oscap : true
aws : false
virustotal: false