Airbyte asset launchpad showing raw values instead of env var names #17842
Unanswered
Replies: 2 comments 12 replies
-
Are you doing something like this? AIRBYTE_HOST = EnvVar("AIRBYTE_HOST")
# same for AIRBYTE_PASSWORD, etc
airbyte_instance = AirbyteResource(host=AIRBYTE_HOST, ...) If you do this instead, are the values hidden? airbyte_instance = AirbyteResource(host=EnvVar("AIRBYTE_HOST"), ...) |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I load up the launchpad for an airbyte asset, I am still seeing the raw values for actually connecting to the instance (rather than the hidden env values). Anyone have thoughts on why?
It seems to be working fine for all the other resources.
The question was originally asked in Dagster Slack.
Beta Was this translation helpful? Give feedback.
All reactions