Ignacio Valdelvira
07/22/2022, 10:28 AMdatabase: ${POSTGRES_PHLO_DATABASE}
password: ${POSTGRES_PHLO_PASSWORD}
username: ${POSTGRES_PHLO_USERNAME}
and defined in my .env file.
I assumed I’ll need to map those variables in the airbyte docker compose yaml too like this
environment:
- POSTGRES_PHLO_DATABASE=${POSTGRES_PHLO_DATABASE}
...
I wasn’t sure in which service I should do the mapping so I put it in all of them just to try
However, once in Airbyte UI I can’t seem to connect to my postgres source. If I replace the database/password/username by hardcoded real values it works, so the problem seems to be that I can’t figure out how to correctly map the environment variables with the actual values. How can I fix this? Thanks!Augustin Lafanechere (Airbyte)
07/22/2022, 10:30 AMIgnacio Valdelvira
07/22/2022, 10:31 AMIgnacio Valdelvira
07/22/2022, 10:33 AM