-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
55 lines (47 loc) · 1.17 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
variable "pm_url" {
default = "https://proxmox:8006"
type = string
description = "URL for Proxmox"
}
variable "pm_api_url" {
default = "https://proxmox:8006/api/json"
type = string
description = "URL for Proxmox API"
}
variable "pm_user" {
default = "terraform@pve"
type = string
description = "User ID for Proxmox API"
}
variable "pm_pass" {
default = ""
type = string
description = "Password for Proxmox API"
sensitive = true
}
variable "private_ssh_key" {
default = "~/.ssh/id_ed25519"
type = string
description = "SSH Private Key"
sensitive = true
}
variable "repo_dir" {
default = "."
type = string
description = "Path to the root of the directory within the filesystem"
}
variable "public_ssh_keys" {
default = ["~/.ssh/id_ed25519.pub"]
type = list(string)
description = "SSH Public Key Fingerprint"
}
variable "target_node" {
default = "host-1"
type = string
description = "Proxmox cluster node to target for deployment"
}
variable "template" {
default = "ubuntu-2404"
type = string
description = "Template to clone from"
}