Compare commits
2 Commits
77eec91bf1
...
814ef36bb7
Author | SHA1 | Date |
---|---|---|
Philippe Caseiro | 814ef36bb7 | |
Philippe Caseiro | 9c077553d8 |
|
@ -1,5 +1,25 @@
|
||||||
variable "vms" {
|
variable "vms" {
|
||||||
type = map
|
type = map(string,object(
|
||||||
|
{
|
||||||
|
domain = string
|
||||||
|
cpu = number
|
||||||
|
vcpu = number
|
||||||
|
ram = number
|
||||||
|
system_image_persistent = bool
|
||||||
|
data_image_persistent = bool
|
||||||
|
data_disks = list(object({
|
||||||
|
name = string
|
||||||
|
size = string
|
||||||
|
persistent = bool
|
||||||
|
}))
|
||||||
|
network_interfaces = list(object({
|
||||||
|
network_id = string
|
||||||
|
ip = string
|
||||||
|
mac = string
|
||||||
|
}))
|
||||||
|
sysdatastore = string
|
||||||
|
}
|
||||||
|
))
|
||||||
description = "Virtual Machines description"
|
description = "Virtual Machines description"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue