From 2d4c8b8b61c46b7d1b1779660ea872b1ac96366c Mon Sep 17 00:00:00 2001 From: Chamseddine Saadoune Date: Tue, 21 Nov 2023 21:33:00 +0100 Subject: [PATCH] ansible.md : add logstash_password variable (#5633) Signed-off-by: Chamseddine Saadoune Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com> --- _install-and-configure/install-opensearch/ansible.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_install-and-configure/install-opensearch/ansible.md b/_install-and-configure/install-opensearch/ansible.md index 2f74cec0..9efa5406 100644 --- a/_install-and-configure/install-opensearch/ansible.md +++ b/_install-and-configure/install-opensearch/ansible.md @@ -55,11 +55,11 @@ Make sure you have direct SSH access into the root user of the target node. 1. Run the Ansible playbook with root privileges: ```bash - ansible-playbook -i inventories/opensearch/hosts opensearch.yml --extra-vars "admin_password=Test@123 kibanaserver_password=Test@6789" + ansible-playbook -i inventories/opensearch/hosts opensearch.yml --extra-vars "admin_password=Test@123 kibanaserver_password=Test@6789 logstash_password=Test@456" ``` {% include copy.html %} - You can set the passwords for reserved users (`admin` and `kibanaserver`) using the `admin_password` and `kibanaserver_password` variables. + You can set the passwords for reserved users (`admin`, `kibanaserver`, and `logstash`) using the `admin_password`, `kibanaserver_password`, and `logstash_password` variables. 2. After the deployment process is complete, you can access OpenSearch and OpenSearch Dashboards with the username `admin` and the password that you set for the `admin_password` variable.