Compare commits

..

2 Commits

2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
locals {
fqdn = "${var.vm_shortname}.${var.vm_domain}"
system_image_name = "system.${local.fqdn}"
system_image_source = var.system_image_source
data_image_name = "data.${local.fqdn}"
}

View File

@ -92,5 +92,5 @@ variable "graphics" {
variable "imagemode" { variable "imagemode" {
description = "Disk image mode" description = "Disk image mode"
type = string type = string
default = "0600" default = "600"
} }