11 lines
225 B
Terraform
11 lines
225 B
Terraform
|
|
variable "build_id" {
|
||
|
|
description = "Unique identifier for the build"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "template_vm_id" {
|
||
|
|
description = "VM ID of the Packer-built template"
|
||
|
|
type = number
|
||
|
|
default = 9000
|
||
|
|
}
|