fix(module): fix variable usage in forbiden place
This commit is contained in:
parent
9f05f09e5d
commit
e8140d8b3f
|
@ -26,7 +26,7 @@ variable "vm_domain" {
|
||||||
variable "system_image_name" {
|
variable "system_image_name" {
|
||||||
description = "System image disk name"
|
description = "System image disk name"
|
||||||
type = string
|
type = string
|
||||||
default = "${var.vm_shortname}.system"
|
default = "${local.shortname}.system"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "system_image_source" {
|
variable "system_image_source" {
|
||||||
|
@ -38,7 +38,7 @@ variable "system_image_source" {
|
||||||
variable "data_image_name" {
|
variable "data_image_name" {
|
||||||
description = "Data image disk name"
|
description = "Data image disk name"
|
||||||
type = string
|
type = string
|
||||||
default = "${var.vm_shortname}.data"
|
default = "${local.shortname}.data"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "data_image_source" {
|
variable "data_image_source" {
|
||||||
|
|
Loading…
Reference in New Issue