-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
62 lines (52 loc) · 1.34 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
variable "default_network" {
description = "First 3 octets of your network"
type = string
default = "10.0.3"
}
variable "proxmox_server_ip" {
description = "IP address of the Proxmox server"
type = string
}
variable "proxmox_user" {
description = "Username for Proxmox"
type = string
default = "root@pam"
}
variable "proxmox_api_key_name" {
description = "Name of the API key for Proxmox"
type = string
}
variable "proxmox_api_key_secret" {
description = "Secret of the API key for Proxmox"
type = string
}
variable "local_ssh_public_key" {
description = "Local ssh key to authenticate with Proxmox"
type = string
default = "~/.ssh/id_rsa.pub"
}
variable "local_ssh_private_key" {
description = "Local ssh key to authenticate with Proxmox"
type = string
default = "~/.ssh/id_rsa"
}
variable "vm_password" {
description = "Default password for VMs"
type = string
default = "ubuntu"
}
variable "lb_vm_name" {
description = "Name for the load balancer VM"
type = string
default = "ex-lb"
}
variable "server_vm_prefix" {
description = "Prefix for the server VMs"
type = string
default = "ex-srv"
}
variable "agent_vm_prefix" {
description = "Prefix for the agent VMs"
type = string
default = "ex-agt"
}