-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
119 lines (97 loc) · 2.34 KB
/
variables.tf
File metadata and controls
119 lines (97 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# Variables for the Terraform configuration
variable "kube_config_path" {
description = "Path to the kubeconfig file"
type = string
}
variable "server_ips" {
description = "List of server IPs for K3S cluster"
type = list(string)
}
variable "k3s_default_namespace" {
description = "Name of the K3S default namespace"
type = string
}
variable "ssh_username" {
description = "SSH username for server access"
type = string
}
variable "ssh_private_key_path" {
description = "Path to SSH private key"
type = string
}
variable "argocd_version" {
description = "Version of ArgoCD to install"
type = string
default = "5.34.6"
}
variable "argocd_hostname" {
description = "Hostname for ArgoCD"
type = string
}
variable "argocd_admin_password" {
description = "Admin password for ArgoCD"
type = string
sensitive = true
}
variable "argocd_tls_secret_name" {
description = "Name of the TLS secret for ArgoCD ingress"
type = string
}
variable "postgres_database" {
description = "PostgreSQL database name"
type = string
}
variable "postgres_username" {
description = "PostgreSQL username"
type = string
sensitive = true
}
variable "postgres_root_password" {
description = "PostgreSQL root password"
type = string
sensitive = true
}
variable "postgres_password" {
description = "PostgreSQL password"
type = string
sensitive = true
}
variable "mariadb_database" {
description = "Mariadb database name"
type = string
}
variable "mariadb_username" {
description = "Mariadb username"
type = string
sensitive = true
}
variable "mariadb_root_password" {
description = "Mariadb root password"
type = string
sensitive = true
}
variable "mariadb_password" {
description = "Mariadb password"
type = string
sensitive = true
}
variable "mongo_username" {
description = "MongoDB Admin username"
type = string
sensitive = true
}
variable "mongo_password" {
description = "MongoDB root password"
type = string
sensitive = true
}
variable "redis_password" {
description = "Redis password"
type = string
sensitive = true
}
variable "environment" {
description = "Environment (dev or prod)"
type = string
default = "prod"
}