mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-09 22:41:03 +01:00
Implemented passowrd variable
This commit is contained in:
parent
f81dcc7cd0
commit
dd5f92f1c8
@ -10,4 +10,4 @@ monitoring.ui.container.elasticsearch.enabled: true
|
|||||||
## X-Pack security credentials
|
## X-Pack security credentials
|
||||||
#
|
#
|
||||||
elasticsearch.username: elastic
|
elasticsearch.username: elastic
|
||||||
elasticsearch.password: changeme
|
elasticsearch.password: {{elastic_search_password}}
|
||||||
|
@ -14,7 +14,7 @@ output {
|
|||||||
elasticsearch {
|
elasticsearch {
|
||||||
hosts => "elasticsearch:9200"
|
hosts => "elasticsearch:9200"
|
||||||
user => "elastic"
|
user => "elastic"
|
||||||
password => "changeme"
|
password => "{{elastic_search_password}}"
|
||||||
ecs_compatibility => disabled
|
ecs_compatibility => disabled
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,4 +9,4 @@ xpack.monitoring.elasticsearch.hosts: [ "http://elasticsearch:9200" ]
|
|||||||
#
|
#
|
||||||
xpack.monitoring.enabled: true
|
xpack.monitoring.enabled: true
|
||||||
xpack.monitoring.elasticsearch.username: elastic
|
xpack.monitoring.elasticsearch.username: elastic
|
||||||
xpack.monitoring.elasticsearch.password: changeme
|
xpack.monitoring.elasticsearch.password: {{elastic_search_password}}
|
||||||
|
Loading…
Reference in New Issue
Block a user