fix(nebula): fix unclear variable name
This commit is contained in:
parent
85bb5d597d
commit
75babdbff8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue