Problem
Right now, to change a single option in the postgresql_parameters variable, I have to copy the entire dictionary from the common/defaults role into my inventory.
Description
It would be great to have a variable like postgresql_parameters_extra that could be merged with the default postgresql_parameters during playbook execution.
Importance
nice to have
Proposed implementation
postgresql_parameters: "{{ postgresql_parameters | community.general.lists_mergeby(postgresql_parameters_extra, 'option') }}"
Problem
Right now, to change a single option in the
postgresql_parametersvariable, I have to copy the entire dictionary from the common/defaults role into my inventory.Description
It would be great to have a variable like
postgresql_parameters_extrathat could be merged with the defaultpostgresql_parametersduring playbook execution.Importance
nice to have
Proposed implementation