github.com/hashicorp/packer@v1.14.3/packer_test/plugin_tests/templates/test_one_plugin.pkr.hcl (about)

     1  packer {
     2    required_plugins {
     3      tester = {
     4        source = "github.com/hashicorp/tester",
     5        version = ">= 1.0.0"
     6      }
     7    }
     8  }
     9  
    10  source "tester-dynamic" "test" {}
    11  
    12  build {
    13    sources = [
    14      "tester-dynamic.test",
    15    ]
    16  }