github.com/hashicorp/packer@v1.14.3/command/test-fixtures/fmt_errs/malformed.pkr.hcl (about)

     1  variable "region" {
     2    type =string
     3  }
     4  
     5  invalid
     6  
     7  source "amazon-ebs" "example" {
     8    region = var.region
     9  }
    10  
    11  build {
    12    sources = ["source.amazon-ebs.example"]
    13  }
    14