Trouble adding Elasticsearch source with Terraform in Airbyte

Summary

The user is facing issues with adding an Elasticsearch source in Airbyte using Terraform. The endpoint is being set correctly, but there are problems with selecting the authentication method, username, and password.


Question

Have you ever added elastic search source into airbyte with using terraform:

resource “airbyte_source_custom” “custom” {
name = “Elasticsearch”
workspace_id = var.workspace_id
definition_id = “7cf88806-25f5-4e1a-b422-b2fa9e1b0090”

configuration = jsonencode({
authentication_method = {
type = “Username/Password”
username = “username”
password = “password”
}
endpoint = “endpoint”
})
}

i cannot add properly. endpoint writing correctly but authentication_method, username, password cannot be selected. Am i missing something?



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

["elastic-search-source", "terraform", "authentication-method", "username", "password", "endpoint"]