Guest User

Untitled

a guest
Aug 2nd, 2020
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. output.elasticsearch:
  2. # Array of hosts to connect to.
  3. hosts: ["91.242.11.225:9200"] # Not the real IP
  4.  
  5. # Protocol - either `http` (default) or `https`.
  6. #protocol: "https"
  7.  
  8. # Authentication credentials - either API key or username/password.
  9. #api_key: "id:api_key"
  10. username: "elastic"
  11. password: "password" # Not the real password
  12. ssl.enabled: true
  13. ssl.certificate_authorities: ["/etc/elk/ca.crt"]
  14.  
  15. # Certificate for SSL client authentication
  16. ssl.certificate: "/etc/elk/beats.crt"
  17.  
  18. # Client Certificate Key
  19. ssl.key: "/etc/elk/beats.key"
  20. ssl.key_passphrase: "password" # Not the real password
  21. ssl.verification_mode: full
Add Comment
Please, Sign In to add comment