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

Sync variable file across all template

parent f979c7af
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,12 @@ variable "image_name" { ...@@ -9,6 +9,12 @@ variable "image_name" {
description = "Name of the image in openstack" 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" { variable "image_date_suffix" {
type = bool type = bool
default = false default = false
......
...@@ -5,16 +5,46 @@ variable "root_ssh_key" { ...@@ -5,16 +5,46 @@ variable "root_ssh_key" {
variable "image_name" { variable "image_name" {
type = string type = string
default = "cluster-image-gpu" default = "cluster-image"
description = "Name of the image in openstack" 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" { variable "image_date_suffix" {
type = bool type = bool
default = false default = false
description = "Append a date to the image name (in YYYYMMDDHHMMSS format)" description = "Append a date to the image name (in YYYYMMDDHHMMSS format)"
} }
variable "image_tags" {
type = list(string)
default = []
description = "List of tags to be associated to the resulting image"
}
variable "image_membership" {
type = list(string)
default = []
description = "Projects/tenants to share the image in openstack with"
}
variable "auto_accept_members" {
type = bool
default = false
description = "A boolean value for auto accepting image in the projects/tenants defined in image_membership."
}
variable "skip_create_image" {
type = bool
default = false
description = "A boolean value for skipping image creation at the end of the build"
}
variable "source_image" { variable "source_image" {
type = string type = string
description = "The name of the source image to use" description = "The name of the source image to use"
...@@ -25,12 +55,6 @@ variable "flavor" { ...@@ -25,12 +55,6 @@ variable "flavor" {
description = "The name of the flavor to use" description = "The name of the flavor to use"
} }
variable "ssh_username" {
type = string
default = "centos"
description = "The default username to use for SSH"
}
variable "floating_ip_network" { variable "floating_ip_network" {
type = string type = string
description = "floating ip network to use with (temporary) ip assignmnet to a vm" description = "floating ip network to use with (temporary) ip assignmnet to a vm"
...@@ -46,3 +70,15 @@ variable "security_groups" { ...@@ -46,3 +70,15 @@ variable "security_groups" {
default = [] default = []
description = "A list of security groups to add - you should make sure ssh access is open to the machine" description = "A list of security groups to add - you should make sure ssh access is open to the machine"
} }
variable "build_instance_name" {
type = string
default = "gpu"
description = "A name of build instance used for image build"
}
variable "ssh_username" {
type = string
default = "centos"
description = "The default username to use for SSH"
}
...@@ -9,6 +9,12 @@ variable "image_name" { ...@@ -9,6 +9,12 @@ variable "image_name" {
description = "Name of the image in openstack" 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" { variable "image_date_suffix" {
type = bool type = bool
default = false 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