mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-08 16:22:15 -04:00
* Add variable interpolation support to hcp_packer_registry block * Add tests for variable interpolation in hcp_packer_registry block * Add variable interpolation support to the build block (#11425) * Add simple test to build command
9 lines
89 B
HCL
9 lines
89 B
HCL
variable "name" {
|
|
type = int
|
|
default = 123
|
|
}
|
|
|
|
build {
|
|
name = var.name
|
|
}
|
|
|