-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
46 lines (39 loc) · 1021 Bytes
/
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
variable "base_img_url" {
description = "URL to debian cloud img qcow2"
type = string
default = "https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2"
}
variable "libvirt_uri" {
description = "libvirt_uri"
type = string
default = "qemu+ssh://markom@baubilas.markom.lt:8022/system?known_hosts_verify=ignore"
}
variable "pool" {
description = "libvirt pool name"
type = string
}
variable "libvirt_pool_path" {
description = "Libvirt poll dir path"
type = string
default = "/var/lib/libvirt/images/terraform"
}
variable "vm_name" {
description = "Name of the VM"
type = string
default = "terraform"
}
variable "vm_size" {
description = "Size of the VM"
type = number
default = 5361393664
}
variable "vm_memory" {
description = "Memory of the VM"
type = number
default = 1024
}
variable "vm_cpus" {
description = "CPUs of the VM"
type = number
default = 1
}