Summary
User is facing a 405 not allowed error when trying to create connectors using Terraform after deploying Airbyte through Helm chart in an EKS cluster.
Question
Hi team , I’ve deployed airbyte through helm chart in an EKS cluster, and its working fine creation of connectors from UI. While i’m trying to do the same from terraform , it’s throwing a 405 not allowed error. Any idea on why this is happening? Thanks
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
["error-405", "creating-connectors", "terraform", "helm-chart", "eks-cluster"]
I did not try it. But if you are using helm provider from TF use something like this:
kubernetes {
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
exec {
api_version = "<http://client.authentication.k8s.io/v1beta1|client.authentication.k8s.io/v1beta1>"
args = ["eks", "get-token", "--cluster-name", module.eks.cluster_name]
command = "aws"
}
}
}```
Oh, Sorry. You mean it creates but doesnt work. NM
<@U07PR3MBFNJ> your airbyte terraform provider is configured like this?
server_url = "<https://your-airbyte-server/api/public/v1>"
} ```
Adding /public/v1 worked. Thanks