diff --git a/test/templates/pin_1.0.9.pkr.hcl b/test/templates/pin_1.0.9.pkr.hcl new file mode 100644 index 000000000..5a1365277 --- /dev/null +++ b/test/templates/pin_1.0.9.pkr.hcl @@ -0,0 +1,14 @@ +packer { + required_plugins { + tester = { + source = "github.com/hashicorp/tester" + version = "= 1.0.9" + } + } +} + +source "tester-dynamic" "test" {} + +build { + sources = ["tester-dynamic.test"] +} diff --git a/test/templates/simple.json b/test/templates/simple.json new file mode 100644 index 000000000..f1239e9b3 --- /dev/null +++ b/test/templates/simple.json @@ -0,0 +1,6 @@ +{ + "builders": [{ + "type": "tester-dynamic", + "name": "test" + }] +}