Skip to content
Snippets Groups Projects

Draft: Add image sharing option to packer template

Open Eesaan Atluri requested to merge feat-add-image-sharing into master
1 file
+ 23
1
Compare changes
  • Side-by-side
  • Inline
+ 23
1
@@ -74,4 +74,26 @@ variable "s3_cert_object_name" {
type = string
default = ""
description = "s3 certificate object name"
}
\ No newline at end of file
}
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"
}
Loading