mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Implemented passowrd variable
This commit is contained in:
@@ -10,4 +10,4 @@ monitoring.ui.container.elasticsearch.enabled: true
|
||||
## X-Pack security credentials
|
||||
#
|
||||
elasticsearch.username: elastic
|
||||
elasticsearch.password: changeme
|
||||
elasticsearch.password: {{elastic_search_password}}
|
||||
|
@@ -14,7 +14,7 @@ output {
|
||||
elasticsearch {
|
||||
hosts => "elasticsearch:9200"
|
||||
user => "elastic"
|
||||
password => "changeme"
|
||||
password => "{{elastic_search_password}}"
|
||||
ecs_compatibility => disabled
|
||||
}
|
||||
}
|
||||
|
@@ -9,4 +9,4 @@ xpack.monitoring.elasticsearch.hosts: [ "http://elasticsearch:9200" ]
|
||||
#
|
||||
xpack.monitoring.enabled: true
|
||||
xpack.monitoring.elasticsearch.username: elastic
|
||||
xpack.monitoring.elasticsearch.password: changeme
|
||||
xpack.monitoring.elasticsearch.password: {{elastic_search_password}}
|
||||
|
Reference in New Issue
Block a user