Closed laurent-indermuehle closed 8 months ago
When I set controller_settings_all and controller_settings_dev, only the last value wins. I was expended the variables to be merged.
For instance;
controller_settings_all: settings: GALAXY_IGNORE_CERTS: true AUTH_BASIC_ENABLED: true controller_settings_dev: settings: TOWER_URL_BASE: https://aap-control-dev.example.com
When using: controller_settings: "{{ controller_settings_all | combine(controller_settings_dev, list_merge='append') }}" Then control_settings become:
controller_settings: "{{ controller_settings_all | combine(controller_settings_dev, list_merge='append') }}"
control_settings
settings: TOWER_URL_BASE: https://aap-control-dev.example.com
I was expecting:
settings: GALAXY_IGNORE_CERTS: true AUTH_BASIC_ENABLED: true TOWER_URL_BASE: https://aap-control-dev.example.com
When I set controller_settings_all and controller_settings_dev, only the last value wins. I was expended the variables to be merged.
For instance;
When using:
controller_settings: "{{ controller_settings_all | combine(controller_settings_dev, list_merge='append') }}"
Thencontrol_settings
become:I was expecting: