Files
opentf/command/e2etest/testdata/provisioner-plugin/main.tf
James Bardin f8ccbcd3bb Add e2e test for provisioner plugin
Ensure we can still execute a 3rd party provisioner binary, using the
legacy plugin discovery location of the configuration root directory.
2020-12-02 12:45:00 -05:00

6 lines
98 B
HCL

resource "null_resource" "a" {
provisioner "test" {
command = "echo HelloProvisioner"
}
}