items not keys in for loop

This commit is contained in:
m0duspwnens
2024-04-09 10:22:05 -04:00
parent c48436ccbf
commit daa5342986

View File

@@ -2,7 +2,7 @@
{% from 'kafka/map.jinja' import KAFKAMERGED %}
{% set KAFKACONFIG = {} %}
{% for k, v in KAFKAMERGED.config.keys() %}
{% for k, v in KAFKAMERGED.config.items() %}
{% do KAFKACONFIG.update({k | replace("_x_", "."): v}) %}
{% endfor %}