The newly added check_unsafe_interpolations give false positives. If `command` is present, the title doesn't need to be validated. An example: https://github.com/voxpupuli/puppet-trusted_ca/blob/8f9ccc04a12ed3608131d9cb4d80d9d9ecffb380/manifests/ca.pp#L74-L81 Or simplified, this being flagged as unsafe but I don't see any problem with it: ```puppet exec { "validate ${filename}": command => ['openssl', 'x509', '-in', "${install_path}/${_name}", '-noout'], } ``` _Originally posted by @ekohl in https://github.com/puppetlabs/puppet-lint/issues/142#issuecomment-1694652627_