23 lines
477 B
HCL
23 lines
477 B
HCL
variable "remote" {
|
|
description = "The remote source of the image."
|
|
type = string
|
|
}
|
|
|
|
variable "name" {
|
|
description = "The name of the image to use."
|
|
type = string
|
|
}
|
|
|
|
|
|
variable "architecture" {
|
|
description = "The image architecture (e.g. x86_64, aarch64)."
|
|
type = string
|
|
default = "x86_64"
|
|
}
|
|
|
|
variable "aliases" {
|
|
description = "A list of aliases to assign to the image after pulling"
|
|
type = list(string)
|
|
default = null
|
|
}
|