mirror of
https://github.com/wazuh/wazuh-docker.git
synced 2025-10-23 04:51:57 +00:00
17 lines
593 B
Bash
17 lines
593 B
Bash
#!/bin/bash
|
|
# Wazuh Docker Copyright (C) 2019 Wazuh Inc. (License GPLv2)
|
|
|
|
##############################################################################
|
|
# Creation and management of certificates.
|
|
##############################################################################
|
|
|
|
if [[ $SECURITY_ENABLED == "yes" ]]; then
|
|
echo "SECURITY - Elasticserach security certificates."
|
|
|
|
# Creation of the certificate for Elasticsearch.
|
|
# After the execution of this script will have generated
|
|
# the Elasticsearch certificate and related keys and passphrase.
|
|
# Example: TO DO
|
|
|
|
fi
|