107 lines
3.3 KiB
Ruby
107 lines
3.3 KiB
Ruby
require "language/go"
|
|
|
|
class Terraform < Formula
|
|
desc "Tool to build, change, and version infrastructure"
|
|
homepage "https://www.terraform.io/"
|
|
url "https://github.com/hashicorp/terraform/archive/v0.10.6.tar.gz"
|
|
sha256 "3170223c601263a7be9af9d14194e36170900cecfec784464abca1679e03fb11"
|
|
head "https://github.com/hashicorp/terraform.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "ece6bfbceef260a3e499c9b4d93a43f7062511ddf19c47c5c4eafa811a4a3b8b" => :high_sierra
|
|
sha256 "cdb4d39f9e2b0f653a58a3bbd3013977c314893fe503378f7a1ef10993a1d767" => :sierra
|
|
sha256 "9be4c4f86c7d079534bcc5891fe16ed372977761511b1f9493015f9ef71bb5f2" => :el_capitan
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
conflicts_with "tfenv", :because => "tfenv symlinks terraform binaries"
|
|
|
|
go_resource "github.com/mitchellh/gox" do
|
|
url "https://github.com/mitchellh/gox.git",
|
|
:revision => "c9740af9c6574448fd48eb30a71f964014c7a837"
|
|
end
|
|
|
|
go_resource "github.com/mitchellh/iochan" do
|
|
url "https://github.com/mitchellh/iochan.git",
|
|
:revision => "87b45ffd0e9581375c491fef3d32130bb15c5bd7"
|
|
end
|
|
|
|
go_resource "github.com/kisielk/errcheck" do
|
|
url "https://github.com/kisielk/errcheck.git",
|
|
:revision => "23699b7e2cbfdb89481023524954ba2aeff6be90"
|
|
end
|
|
|
|
go_resource "github.com/kisielk/gotool" do
|
|
url "https://github.com/kisielk/gotool.git",
|
|
:revision => "0de1eaf82fa3f583ce21fde859f1e7e0c5e9b220"
|
|
end
|
|
|
|
go_resource "golang.org/x/tools" do
|
|
url "https://go.googlesource.com/tools.git",
|
|
:branch => "release-branch.go1.8"
|
|
end
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
ENV.prepend_create_path "PATH", buildpath/"bin"
|
|
|
|
dir = buildpath/"src/github.com/hashicorp/terraform"
|
|
dir.install buildpath.children - [buildpath/".brew_home"]
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
%w[src/github.com/mitchellh/gox src/golang.org/x/tools/cmd/stringer
|
|
src/github.com/kisielk/errcheck].each do |path|
|
|
cd(path) { system "go", "install" }
|
|
end
|
|
|
|
cd dir do
|
|
# v0.6.12 - source contains tests which fail if these environment variables are set locally.
|
|
ENV.delete "AWS_ACCESS_KEY"
|
|
ENV.delete "AWS_SECRET_KEY"
|
|
|
|
arch = MacOS.prefer_64_bit? ? "amd64" : "386"
|
|
ENV["XC_OS"] = "darwin"
|
|
ENV["XC_ARCH"] = arch
|
|
system "make", "test", "vet", "bin"
|
|
|
|
bin.install "pkg/darwin_#{arch}/terraform"
|
|
zsh_completion.install "contrib/zsh-completion/_terraform"
|
|
prefix.install_metafiles
|
|
end
|
|
end
|
|
|
|
test do
|
|
minimal = testpath/"minimal.tf"
|
|
minimal.write <<-EOS.undent
|
|
variable "aws_region" {
|
|
default = "us-west-2"
|
|
}
|
|
|
|
variable "aws_amis" {
|
|
default = {
|
|
eu-west-1 = "ami-b1cf19c6"
|
|
us-east-1 = "ami-de7ab6b6"
|
|
us-west-1 = "ami-3f75767a"
|
|
us-west-2 = "ami-21f78e11"
|
|
}
|
|
}
|
|
|
|
# Specify the provider and access details
|
|
provider "aws" {
|
|
access_key = "this_is_a_fake_access"
|
|
secret_key = "this_is_a_fake_secret"
|
|
region = "${var.aws_region}"
|
|
}
|
|
|
|
resource "aws_instance" "web" {
|
|
instance_type = "m1.small"
|
|
ami = "${lookup(var.aws_amis, var.aws_region)}"
|
|
count = 4
|
|
}
|
|
EOS
|
|
system "#{bin}/terraform", "init"
|
|
system "#{bin}/terraform", "graph"
|
|
end
|
|
end
|