github.com/hashicorp/packer@v1.14.3/hcl2template/testdata/build/invalid_build_name_variable.pkr.hcl (about)

     1  variable "name" {
     2    type    = int
     3    default = 123
     4  }
     5  
     6  build {
     7    name        = var.name
     8  }
     9