From b214694cecb83b065837b6f377bd04fbcd5a1e97 Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Mon, 27 Feb 2023 14:16:49 +0100 Subject: [PATCH] fix(nebula): correct image usage in template --- modules/nebula/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/nebula/main.tf b/modules/nebula/main.tf index bd8ae19..d998cf4 100644 --- a/modules/nebula/main.tf +++ b/modules/nebula/main.tf @@ -108,8 +108,12 @@ resource "opennebula_template" "vm_template" { } } permissions = var.permissions + depends_on = [ opennebula_image.system ] + + /* Not needed now depends_on = [ opennebula_image.system, opennebula_image.data ] + */ } resource "opennebula_virtual_machine" "vm" {