-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
75 lines (65 loc) · 1.44 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
65
66
67
68
69
70
71
72
73
74
75
variable "proxmox_api_endpoint" {
type = string
description = "Proxmox cluster API endpoint https://proxmox-01.my-domain.net:8006"
}
variable "proxmox_api_token" {
type = string
description = "Proxmox API token bpg proxmox provider with ID and token"
}
variable "vyos_api_endpoint" {
type = string
nullable = false
sensitive = false
description = "VyOS API endpoint"
}
variable "vyos_api_key" {
type = string
nullable = false
sensitive = true
description = "VyOS API key"
}
variable "vyos_shared_network_name" {
type = string
nullable = false
description = "DHCP Shared Network Name"
}
variable "vyos_subnet" {
type = string
nullable = false
description = "DHCP Subnet"
}
variable "domain_name" {
description = "Domain name"
type = string
}
variable "ipv6_prefix" {
description = "IPv6 prefix"
type = string
}
variable "cluster_nodes" {
type = map(object({
proxmox_node = string
disk_image = string
bios_type = string
node_cpus = number
node_memory = number
node_disk_store = string
ceph_network_ip_address = string
}))
}
variable "cluster_masters" {
type = map(object({
proxmox_node = string
disk_image = string
bios_type = string
node_cpus = number
node_memory = number
node_disk_store = string
ceph_network_ip_address = string
}))
}
variable "inventory_file" {
description = "Kubespray inventory file"
type = string
default = "inventory.ini"
}