Files
falco/integrations/puppet-module/sysdig-falco/manifests/config.pp
2018-07-13 13:09:13 +02:00

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'),
}
}