| Puppet Version: 6.19.1 Puppet Server Version: 6.19.1 OS Name/Version: Debian 10 Since Puppet 6 (no problem with Puppet 5), when generating documentation with "puppet strings generate" with code like this :
icinga2::object::service { 'ssh': |
target => '/etc/icinga2/conf.d/file.conf', |
apply => true, |
display_name => 'SSH', |
check_command => 'ssh', |
} |
I have this error: Failed to parse file.pp: Syntax error at 'apply' If I change apply to anything else, it works. Desired Behavior: Documentation should be genereated with code like this that contain "apply". Actual Behavior:
[error]: Failed to parse modules/my_module/manifests/file.pp: Syntax error at 'apply' |
|