Steven Searcy
06/03/2025, 11:16 PMinherit_from
with the target-postgres
plugin. If I run target-postgres
directly with the env variable, it works:
loaders:
- name: target-postgres
config:
host: ${DB_HOST}
port: ${DB_PORT}
user: ${DB_USER}
password: ${DB_PASSWORD}
database: ${DB_DATABASE}
default_target_schema: ${DB_SCHEMA}
However, if I try and run the extension, it complains about an invalid string literal for PORT
, so I have to hard code the port. It's only the port that is not being pulled in correctly, which is also odd.
- name: target-postgres--extension
inherit_from: target-postgres
config:
activate_version: false
add_record_metadata: false
Not the end of the world, but I did find it strange.Edgar RamĂrez (Arch.dev)
06/04/2025, 12:53 AMSteven Searcy
06/04/2025, 12:59 AMSteven Searcy
06/04/2025, 1:00 AM