26 lines
314 B
HCL
26 lines
314 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "driver" {
|
|
type = string
|
|
}
|
|
|
|
variable "hypervisors" {
|
|
type = set(string)
|
|
}
|
|
|
|
variable "witnesses" {
|
|
type = set(string)
|
|
}
|
|
|
|
variable "hypervisor_config" {
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|
|
variable "witness_config" {
|
|
type = map(string)
|
|
default = {}
|
|
}
|