mirror of
https://github.com/falcosecurity/falco.git
synced 2025-10-22 12:27:10 +00:00
Add an example puppet module for falco. This module configures the main falco configuration file /etc/falco/falco.yaml, providing templates for all configuration options. It installs falco using debian/rpm packages and installs/manages it as a systemd service.
13 lines
276 B
Puppet
13 lines
276 B
Puppet
# == Class: falco::config
|
|
class falco::config inherits falco {
|
|
|
|
file { '/etc/falco/falco.yaml':
|
|
notify => Service['falco'],
|
|
ensure => file,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0644',
|
|
content => template('falco/falco.yaml.erb'),
|
|
}
|
|
|
|
} |