Puppet Class: role::kibana7_ecs
- Defined in:
- modules/role/manifests/kibana7_ecs.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'modules/role/manifests/kibana7_ecs.pp', line 1
class role::kibana7_ecs {
system::role { 'kibana7_ecs':
description => 'ELK7 Kibana ECS host',
}
include profile::base::production
include profile::base::firewall
include profile::elasticsearch::logstash
include profile::elasticsearch::monitor::base_checks
include profile::kibana
include profile::kibana::httpd_proxy
include profile::tlsproxy::envoy # TLS termination
}
|