From 75babdbff8275c426c000d230a2425729200cdbf Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Thu, 2 Mar 2023 10:26:50 +0100 Subject: [PATCH] fix(nebula): fix unclear variable name --- modules/nebula/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/nebula/main.tf b/modules/nebula/main.tf index ff3ce36..b1ae167 100644 --- a/modules/nebula/main.tf +++ b/modules/nebula/main.tf @@ -24,7 +24,7 @@ variable "graphics" { } -variable "one_prod_ds" { +variable "one_image_ds" { default = "101" } @@ -39,7 +39,7 @@ resource "opennebula_image" "system" { name = "system-${each.key}.${each.value.domain}" description = "System disk for ${each.key}" - datastore_id = var.one_prod_ds + datastore_id = var.one_image_ds path = "https://vulcain.cadoles.com/empty_20G" persistent = each.value.system_image_persistent format = var.image_format @@ -53,7 +53,7 @@ resource "opennebula_image" "data" { name = "data-${each.key}.${each.value.domain}" path = "https://vulcain.cadoles.com/empty_40G" - datastore_id = var.one_prod_ds + datastore_id = var.one_image_ds description = "data disk for ${each.key}" persistent = each.value.data_image_persistent format = var.image_format