-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
77 lines (65 loc) · 1.7 KB
/
variables.tf
File metadata and controls
77 lines (65 loc) · 1.7 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
# Turing Pi BMC connection
variable "turingpi_endpoint" {
description = "Turing Pi BMC endpoint"
type = string
default = "https://turingpi.local"
}
variable "turingpi_username" {
description = "Turing Pi BMC username"
type = string
default = "root"
}
variable "turingpi_password" {
description = "Turing Pi BMC password"
type = string
sensitive = true
}
# Talos configuration
variable "talos_version" {
description = "Talos version to deploy (e.g., 'v1.9.2')"
type = string
default = "v1.9.2"
}
variable "talos_architecture" {
description = "Target architecture for Talos image"
type = string
default = "arm64"
}
variable "talos_firmware" {
description = "Path to Talos firmware image (optional - if not set, uses talos-image module to generate URL)"
type = string
default = null
}
# Cluster configuration
variable "cluster_name" {
description = "Name of the Kubernetes cluster"
type = string
default = "turing-cluster"
}
variable "control_plane_ip" {
description = "IP address of the control plane node"
type = string
}
variable "worker_ips" {
description = "IP addresses of worker nodes"
type = list(string)
}
# Network configuration
variable "metallb_ip_range" {
description = "IP range for MetalLB LoadBalancer services"
type = string
}
variable "ingress_ip" {
description = "IP address for ingress controller"
type = string
}
variable "portainer_ip" {
description = "IP address for Portainer agent"
type = string
}
variable "grafana_password" {
description = "Grafana admin password"
type = string
sensitive = true
default = "admin"
}