homebrew-core/Formula/terraformer.rb

33 lines
1.1 KiB
Ruby

class Terraformer < Formula
desc "CLI tool to generate terraform files from existing infrastructure"
homepage "https://github.com/GoogleCloudPlatform/terraformer"
url "https://github.com/GoogleCloudPlatform/terraformer/archive/0.8.10.tar.gz"
sha256 "29b99429792542e9911bf49d03545abbcadfba4676ee93e3005a436daab787c2"
license "Apache-2.0"
head "https://github.com/GoogleCloudPlatform/terraformer.git"
bottle do
cellar :any_skip_relocation
sha256 "ceace1a3c90353281ba125f08dbf856b3432c3ad53b451f4ce44f7403391a48a" => :big_sur
sha256 "edd0bab50df8cb29b97413468318add8f44f09ad1a762725100f7db167c44fab" => :catalina
sha256 "f0ba34a3a112418298bd25e9e4011b32a7b5fedd7e6b489a44635341c619b04a" => :mojave
end
depends_on "go" => :build
def install
system "go", "build", *std_go_args
end
test do
assert_match version.to_s,
shell_output("#{bin}/terraformer version")
assert_match "Available Commands",
shell_output("#{bin}/terraformer -h")
assert_match "aaa",
shell_output("#{bin}/terraformer import google --resources=gcs --projects=aaa 2>&1", 1)
end
end