SQLALCHEMY_DATABASE_URI: "postgresql://{{ database_username }}:{{ database_password }}@{{ database_host }}:{{ database_port }}/{{ database_name }}"
env:
SQLALCHEMY_DATABASE_URI: "{{ SQLALCHEMY_DATABASE_URI }}"
As the URL is like any other URL, special characters such as those that may be used in the password need to be URL encoded to be parsed correctly.