Skip to content

Commit d71edba

Browse files
authored
make packer var image_disk_format functional (#694)
1 parent 97d6fb5 commit d71edba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packer/openstack.pkr.hcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ variable "volume_size" {
124124

125125
variable "image_disk_format" {
126126
type = string
127-
default = "qcow2"
127+
default = "raw"
128128
}
129129

130130
variable "metadata" {
@@ -178,7 +178,7 @@ source "openstack" "openhpc" {
178178
ssh_bastion_private_key_file = var.ssh_bastion_private_key_file
179179

180180
# Output image:
181-
image_disk_format = "raw"
181+
image_disk_format = var.image_disk_format
182182
image_visibility = var.image_visibility
183183

184184
}

0 commit comments

Comments
 (0)