-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
64 lines (53 loc) · 1.32 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
variable "project_id" {
description = "The GCP project ID"
type = string
}
variable "region" {
description = "The GCP region"
type = string
default = "asia-southeast1"
}
variable "zone" {
description = "The GCP zone"
type = string
default = "asia-southeast1-a"
}
variable "cluster_name" {
description = "The name of the GKE cluster"
type = string
default = "chat-stack"
}
variable "machine_type" {
description = "The machine type for the node pool instances"
type = string
default = "e2-standard-2"
}
variable "openwebui_replicas" {
description = "The number of replicas for the OpenWebUI deployment"
type = number
default = 2
}
variable "domain" {
description = "Domain name to manage DNS records"
type = string
}
variable "subdomain" {
description = "A subdomain to be used for the OpenWebUI"
type = string
}
variable "openai_api_key" {
description = "The OpenAI API key"
type = string
}
variable "webui_name" {
description = "The name displayed on the OpenWebUI"
type = string
}
variable "cloudflare_api_token" {
description = "Cloudflare API token to manage DNS records"
type = string
}
variable "cloudflare_zone_id" {
description = "Cloudflare Zone ID"
type = string
}