Files
securityonion/salt/hive/init.sls
2019-03-12 12:35:22 -04:00

80 lines
2.0 KiB
Plaintext

hiveconfdir:
file.directory:
- name: /opt/so/conf/hive/etc
- makedirs: True
- user: 939
- group: 939
hivelogdir:
file.directory:
- name: /opt/so/log/hive
- makedirs: True
- user: 939
- group: 939
hiveconf:
file.recurse:
- name: /opt/so/conf/hive/etc
- source: salt://hive/thehive/etc
- template: jinja
# Install Elasticsearch
# Made directory for ES data to live in
hiveesdata:
file.directory:
- name: /nsm/hive/esdata
- makedirs: True
- user: 939
- group: 939
so-thehive-es:
docker_container.running:
- image: soshybridhunter/so-thehive-es:HH1.0.7
- hostname: so-thehive-es
- name: so-thehive-es
- user: 939
- interactive: True
- tty: True
- binds:
- /nsm/hive/esdata:/usr/share/elasticsearch/data:rw
- /opt/so/conf/hive/etc/es/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro
- /opt/so/conf/hive/etc/es/log4j2.properties:/usr/share/elasticsearch/config/log4j2.properties:ro
- /opt/so/log/hive:/var/log/elasticsearch:rw
- environment:
- http.host=0.0.0.0
- http.port=9400
- transport.tcp.port=9500
- transport.host=0.0.0.0
- xpack.security.enabled=false
- cluster.name=hive
- script.inline=true
- thread_pool.index.queue_size=100000
- thread_pool.search.queue_size=100000
- thread_pool.bulk.queue_size=100000
- ES_JAVA_OPTS=-Xms512m -Xmx512m
- port_bindings:
- 0.0.0.0:9400:9400
- 0.0.0.0:9500:9500
# Install Cortex
so-cortex:
docker_container.running:
- image: thehiveproject/cortex:latest
- hostname: so-cortex
- name: so-cortex
- port_bindings:
- 0.0.0.0:9001:9001
so-thehive:
docker_container.running:
- image: soshybridhunter/so-thehive:HH1.0.7
- hostname: so-thehive
- name: so-thehive
- user: 939
- binds:
- /opt/so/conf/hive/etc/application.conf:/etc/thehive/application.conf:ro
- port_bindings:
- 0.0.0.0:9000:9000