You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
588 B
40 lines
588 B
|
|
variable "centos_machine_count" {
|
|
type = number
|
|
default = 1
|
|
}
|
|
|
|
variable "pool_name" {
|
|
type = string
|
|
default = "default"
|
|
}
|
|
|
|
variable "volume_format" {
|
|
type = string
|
|
default = "qcow2"
|
|
}
|
|
|
|
variable "centos_hostname_format" {
|
|
type = string
|
|
default = "centos-%02d"
|
|
}
|
|
|
|
variable "centos_image" {
|
|
type = string
|
|
default = "centos-stream-8"
|
|
}
|
|
|
|
variable "network_name" {
|
|
type = string
|
|
default = "lab"
|
|
}
|
|
|
|
variable "network_domain" {
|
|
type = string
|
|
default = "sample.lab"
|
|
}
|
|
|
|
variable "network_ip_range" {
|
|
type = string
|
|
default = "10.10.0.0/24"
|
|
}
|
|
|