Michael Schaidnagel
10/25/2024, 11:07 AMuser
10/25/2024, 11:07 AMTRACKING_STRATEGY
environment variable to logging
. However, I don't have specific information about the exact Terraform configuration for this in the provided knowledge sources. Based on the general information about disabling telemetry, you would typically need to modify the .env
file or set an environment variable in your deployment configuration. For a Kubernetes deployment like AKS, this would likely be done through your Helm chart values or Kubernetes manifests. The relevant information comes from the Airbyte documentation on telemetry: [Documentation > Operator-guides > Telemetry](https://docs.airbyte.com/operator-guides/telemetry) To disable telemetry for your instance, modify the `.env` file and define the following environment variable: TRACKING_STRATEGY=logging
Unfortunately, I don't have specific Terraform code examples for implementing this in an AKS environment. If you're using the official Airbyte Helm chart with Terraform, you might need to set this value in your Helm chart configuration within your Terraform code. For the most up-to-date and accurate information on implementing this with Terraform in AKS, I recommend checking the official Airbyte documentation or reaching out to Airbyte support for specific guidance.Michael Schaidnagel
10/25/2024, 11:11 AMuser
10/25/2024, 11:11 AMuser
10/25/2024, 11:11 AMhcl # <http://provider.tf|provider.tf> provider "airbyte" { # Define the Airbyte provider, credentials, and the server URL here } # <http://main.tf|main.tf> resource "airbyte_resource" "example" { # Contains the main configuration for creating Airbyte resources } # <http://variables.tf|variables.tf> variable "example_variable" { # Holds various variables, including credentials }
In the <http://provider.tf|provider.tf>
file, you define the Airbyte provider, credentials, and the server URL. The <http://main.tf|main.tf>
file contains the main configuration for creating Airbyte resources. The <http://variables.tf|variables.tf>
file holds various variables, including credentials. Please note that this is a very basic and general example. The actual Terraform configuration will depend on your specific use case and requirements. For more detailed information on how to use Terraform with Airbyte, I recommend checking out the [Airbyte Terraform Provider Page](https://registry.terraform.io/providers/airbytehq/airbyte/latest) and the [Airbyte Terraform Setup Guide](https://reference.airbyte.com/reference/using-the-terraform-provider).