-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
37 lines (31 loc) · 911 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
variable "qovery_access_token" {
description = "Qovery API token"
type = string
}
variable "qovery_organization_id" {
description = "Qovery Organization ID where you will deploy your Airbyte stack"
type = string
}
variable "qovery_project_id" {
description = "Qovery Project ID where you will deploy your Airbyte stack"
type = string
}
variable "qovery_cluster_id" {
description = "Qovery Cluster ID where you will deploy your Airbyte stack"
type = string
}
variable "airbyte_helm_version" {
description = "Airbyte Helm chart version"
type = string
default = "1.1.0"
}
variable "airbyte_service_name" {
description = "Airbyte service name"
type = string
default = "Airbyte"
}
variable "qovery_airbyte_web_app_proxy_basic_auth" {
description = "Basic Auth for Airbyte web app proxy"
type = string
default = ""
}