Hi Team,
I have installed logstash7.9.2 in the Linux server. I have created a configuration which will connect to the Ansible-tower rest API using http filter plugin.
My question is there a way to disable ssl/tls verification in the mutate section ( Http filter plugin ) on the logstash pipeline configuration .
The Logstash.conf file contains:
input {
http {
codec => json
}
}
filter {
http {
url => "https://xxxxxxxxxxx/api/v2/jobs/%{[job_id]}/job_host_summaries/"
verb => "GET"
body_format => "json"
headers => {
"Authorization" => "xxxxxxxxxxxxxxxxxxxxx"
}
target_body => "host_summaries"
}
mutate {
add_field => { "host_tmp" => "%{[host_summaries][results][0][summary_fields][host][name]}" }
}
}
output {
stdout { codec => rubydebug }
}