terraform-libvirt/stack/variable.tf

42 lines
1.0 KiB
HCL

variable "ip" {
type = string
default = "10.17.3.35/"
description = "fixed ip address for compute"
}
variable "number_domain" {
type = string
default = "3"
description = "number of domain"
}
variable "hostname" {
type = string
default = "compute"
description = "compute hostname"
}
variable "dns_address" {
type = string
default = "100.64.0.17"
description = "dns ip address"
}
variable "pool_1" {
type = string
default = "pool_1"
description = "already created pool name, set with variable because libvirt provider dont' wotk with data resource"
}
variable "debian_buster_qcow2" {
type = string
default = "debian-10.7.0-with-docker.qcow2"
description = "already created debian vol, set with variable because libvirt provider dont' wotk with data resource"
}
variable "centos7_qcow2" {
type = string
default = "centos7.qcow2"
description = "already created centos vol, set with variable because libvirt provider dont' wotk with data resource"
}