I have a jinja templates (python files) with several variables like this {{ some_variable }}
. Then I have a yml
files with the defined variable values.
python/jinja template:
import datetime
some_variable = '{{ some_variable }}'
yaml file:
some_variable: 'some value'
desired output:
import datetime
some_variable = 'some value'
What is the fastest/easiest way to fill the templates with the yml
variable values?