-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support python data source #16
Comments
z0rc
changed the title
Support python's data_source options
Support python's data source options
Nov 29, 2021
Actually it isn't possible to create python data source with provider. resource "redash_data_source" "python" {
name = "Python"
type = "python"
options {}
} Passes
You need to keep in mind, that python data source can be created without any additional options. Ideally provider should allow omitting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Python data source allows to set two options:
redash_data_source
resource allows to createpython
Data Source, but provider's resource schema doesn't allow to set additional options.FYI python data source can be enabled by setting env var
REDASH_ADDITIONAL_QUERY_RUNNERS=redash.query_runner.python
for redash server.The text was updated successfully, but these errors were encountered: