# Packages
No description provided by the author
# README
terraform-provisioner-makefile
A Makefile / makefile provisioner for Terraform
Usage
provisioner "makefile" {
directory = "~/infrastructure"
target = "provision"
variables {
HOSTNAME = "${openstack_compute_instance_v2.scratch.name}"
}
}
Attributes
directory
: Change to this directory and runmakefile
.target
: The Makefile target / task.variables
: A list of key/value pairs that will be passed in as variables to the Makefile
Installation
- Grab the latest release from the releases page.
- Copy the binary to the same location as the other Terraform executables.
Building
$ go get github.com/jtopjian/terraform-provisioner-makefile
$ cd $GOPATH/src/github.com/jtopjian/terraform-provisioner-makefile
$ go build -v -o ~/path/to/terraform/terraform-provisioner-makefile .