Hi
In puppet templates, the following is what we defined.
class { 'kibana':
ensure => $elastic_version,
manage_repo => false,
config => {
.....
'elasticsearch.url' => 'https://localhost:9200',
........
what we get in the generated kibana.yaml is as follows.
....
elasticsearch.url: https://localhost:9200
....
I think the correct one in the kibana.yaml should be as follows.
elasticsearch.url: "https://localhost:9200"
However, kibana works fine with this file. Could someone please shed light on it?
Thanks in advance!
xzhou