We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When passing a Deferred value to the postgres_password parameter I get the following error message:
Deferred
postgres_password
Failed on [...]: Apply failed to compile for [...]: 'postgresql::postgresql_escape' parameter 'input_string' expects a String value, got Deferred (file: /[...]/.modules/postgresql/manifests/server/passwd.pp, line: 28, column: 16)
Expected deferred values to work, that is simply setting the value to the deferred value.
Setup a default instance and run something similar to the below:
class { '::postgresql::server': postgres_password => Deferred('unwrap', [$admin_password_vault]), }
The text was updated successfully, but these errors were encountered:
This seems to have been implemented for role passwords, but not the root password.
Sorry, something went wrong.
No branches or pull requests
Describe the Bug
When passing a
Deferred
value to thepostgres_password
parameter I get the following error message:Expected Behavior
Expected deferred values to work, that is simply setting the value to the deferred value.
Steps to Reproduce
Setup a default instance and run something similar to the below:
Environment
Additional Context
The text was updated successfully, but these errors were encountered: