-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvars.tf
47 lines (37 loc) · 780 Bytes
/
vars.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
# VM name
variable "rocky9_name" {
}
# Qcow2 volume name
variable "rocky9_volume_name" {
}
# Pool to locate VM
variable "rocky9_volume_pool" {
}
#size in bytes ... equals to 30GB
# https://registry.terraform.io/providers/dmacvicar/libvirt/latest/docs/resources/volume#size
variable "rocky9_volume_size" {
}
# Volume format .. Qcow2
variable "rocky9_volume_format" {
}
# Which Pool to located cloud-init.iso
variable "rocky9_cloudinit_pool" {
}
# Qcow2 cloud-init location
variable "rocky9_cloudinit_disk" {
}
# Rocky linux Qcow2 disk image
variable "rocky9_volume_source" {
}
# VM name
variable "rocky9_domain_name" {
}
# Vm Memory
variable "rocky9_domain_memory" {
}
# VM Cpu count
variable "rocky9_domain_vcpu" {
}
# VM Network name
variable "rocky9_network_name" {
}