Skip to content
Snippets Groups Projects
Commit ad12b7a6 authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Add image format variable

parent 6ba43b6a
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ source "openstack" "image" {
image_members = var.image_membership
image_auto_accept_members = var.auto_accept_members
image_tags = var.image_tags
image_disk_format = var.image_format
flavor = var.flavor
instance_name = var.build_instance_name
......
......@@ -9,6 +9,12 @@ variable "image_name" {
description = "Name of the image in openstack"
}
variable "image_format" {
type = string
default = "qcow2"
description = "The format of the resulting image"
}
variable "image_date_suffix" {
type = bool
default = false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment