You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it is not possible to have a template file.epp
```puppet
<%- |
Stdlib::Port $port,
String[1] $password,
| %>
port <%= $port %>
password <%= $password %>
```
and run
```puppet
file{'/tmp/junk':
content => stdlib::deferrable_epp('module/file.epp', { 'port' => '1234', pass => Deferred('secrets::get',['mysecret'])}),
}
```
since the deferred template substitution will fail:
```
Error: Failed to apply catalog: Evaluation Error: Resource type not found: Stdlib::Port (file: inlined-epp-text, line: 2, column: 3)
```
due to Stdlib::Port not being available on the agent node.
This change now parses the EPP twice. The first pass will reduce the
template to:
```puppet
port = 1234
password <%= $password %>
```
and this simpler template will be passed in deferred mode.
Note the original template type for password must accept the
intermediate generated value of `<%= $password %>` which is typically
case for a secret password.
0 commit comments