-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
60 lines (49 loc) · 1.34 KB
/
variables.tf
File metadata and controls
60 lines (49 loc) · 1.34 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
variable "WORKSPACE_ID" {
description = "The id of prod workspace for Airbyte"
type = string
}
variable "PASSWORD" {
description = "The password for Airbyte"
type = string
}
variable "USERNAME" {
description = "The username for Airbyte"
type = string
}
variable "SERVER_URL" {
description = "The URL for Airbyte server"
type = string
}
variable "SERVICE_ACCOUNT_INFO" {
description = "The certificate for GCP - Json format"
type = string
}
variable "GOOGLE_MEETING_SA" {
description = "The certificate for Google API and Cloud Storage - Json format"
type = string
}
variable "AWS_ACCESS_KEY_ID" {
description = "The access key for AWS account"
type = string
}
variable "AWS_SECRET_ACCESS_KEY" {
description = "The secret key for AWS account"
type = string
}
variable "BIGQUERY_PROJECT_ID" {
description = "The project id for big query"
type = string
}
variable "source_table_names_file" {
description = "Path to the namespace_formats JSON file"
default = "./source_table_names.json" # Adjust the path as needed
}
variable "source_table_names" {
type = map(string)
description = "Namespace formats loaded from JSON"
default = {}
}
variable "OPENAI_API_KEY" {
description = "The OpenAI API key for Milvus embeddings"
type = string
}