fix(nebula): remove obselete variable
This commit is contained in:
parent
58441c69b6
commit
d02e96d4f1
|
@ -6,7 +6,6 @@ variable "vms" {
|
||||||
vcpu = number
|
vcpu = number
|
||||||
ram = number
|
ram = number
|
||||||
system_image_persistent = bool
|
system_image_persistent = bool
|
||||||
data_image_persistent = bool
|
|
||||||
data_disks = list(object({
|
data_disks = list(object({
|
||||||
name = string
|
name = string
|
||||||
size = string
|
size = string
|
||||||
|
@ -136,7 +135,6 @@ resource "opennebula_template" "vm_template" {
|
||||||
arch = "x86_64"
|
arch = "x86_64"
|
||||||
boot = "disk0,nic0"
|
boot = "disk0,nic0"
|
||||||
}
|
}
|
||||||
//labels = var.tag_labels
|
|
||||||
|
|
||||||
dynamic "nic" {
|
dynamic "nic" {
|
||||||
for_each = each.value.network_interfaces
|
for_each = each.value.network_interfaces
|
||||||
|
@ -149,7 +147,7 @@ resource "opennebula_template" "vm_template" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
permissions = var.permissions
|
permissions = var.permissions
|
||||||
depends_on = [ opennebula_image.system ]
|
depends_on = [ opennebula_image.system ]
|
||||||
|
|
||||||
/* Not needed now
|
/* Not needed now
|
||||||
depends_on = [ opennebula_image.system,
|
depends_on = [ opennebula_image.system,
|
||||||
|
|
Loading…
Reference in New Issue