fix(nebula): remove obselete variable

This commit is contained in:
Philippe Caseiro 2023-03-03 15:28:13 +01:00
parent 58441c69b6
commit d02e96d4f1
1 changed files with 1 additions and 3 deletions

View File

@ -6,7 +6,6 @@ variable "vms" {
vcpu = number
ram = number
system_image_persistent = bool
data_image_persistent = bool
data_disks = list(object({
name = string
size = string
@ -136,7 +135,6 @@ resource "opennebula_template" "vm_template" {
arch = "x86_64"
boot = "disk0,nic0"
}
//labels = var.tag_labels
dynamic "nic" {
for_each = each.value.network_interfaces
@ -149,7 +147,7 @@ resource "opennebula_template" "vm_template" {
}
}
permissions = var.permissions
depends_on = [ opennebula_image.system ]
depends_on = [ opennebula_image.system ]
/* Not needed now
depends_on = [ opennebula_image.system,