Summary
Inquiring about the minimum Airbyte version needed to use the Airbyte Terraform provider.
Question
Hi all,
We are having some trouble getting the airbyte terraform provider to connect to our airbyte OSS installation. We are running Airbyte 0.50.54 internally and are attempting to use version 0.6.1. Does anyone know what the minimum required airbyte version to use the terraform provider would be?
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.
Join the conversation on Slack
["airbyte-terraform-provider", "minimum-airbyte-version", "airbyte-oss", "terraform"]
I’d recommend providing concrete examples and errors, and details about deployment because many things have changed over last few months. It’s would be easier to solve with those details than just some trouble
There is a high chance you might need /v1
part in server_url
server_url = "<https://your-airbyte-api-server/v1>"
} ```
for airbyte-api-server you might need to expose it with ingress if you're using helm charts deployment
the other, more recent, option
```provider "airbyte" {
server_url = "<https://your-airbyte-server/api/public/v1>"
} ```
For terraform itself, you can run `TF_LOG=trace terraform plan` . In that way, you will get details what requests are sent to servers.
Send some HTTP requests with Postman (<https://www.postman.com/>), Insomnia (<https://insomnia.rest/>) or any other tool to endpoints, and you will know what is supported.