Compare commits

...

2 Commits

Author SHA1 Message Date
Philippe Caseiro 814ef36bb7 fix conflict 2023-03-03 15:01:44 +01:00
Philippe Caseiro 9c077553d8 fix(nebula): force vms variable type to be safe 2023-03-03 14:59:50 +01:00
1 changed files with 21 additions and 1 deletions

View File

@ -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"
} }