Skip to content

Instantly share code, notes, and snippets.

@phillbaker
Last active April 30, 2018 16:51
Show Gist options
  • Save phillbaker/27d18bfd964748b76a80a5fea1f8a41a to your computer and use it in GitHub Desktop.
Save phillbaker/27d18bfd964748b76a80a5fea1f8a41a to your computer and use it in GitHub Desktop.
narmi brew tap
class ComplianceMasonry < Formula
desc "Compliance Masonry is a command-line interface (CLI) that allows users to construct certification documentation using the OpenControl Schema."
homepage "https://github.com/opencontrol/compliance-masonry/"
url "https://github.com/opencontrol/compliance-masonry/releases/download/v1.1.2/compliance-masonry_1.1.2_darwin_amd64.zip"
sha256 "a0504ad0c9ad5a1249e65856f14d470b2a0c82f968ddfcbb1abb750060ab6a6e"
bottle :unneeded
def install
bin.install "compliance-masonry" => "compliance-masonry"
end
test do
system "which #{bin}/compliance"
end
end
class TerraformProviderElasticsearch < Formula
desc "elasticsearch index and kinbana object provider for terraform"
homepage "https://github.com/phillbaker/terraform-provider-elasticsearch"
url "https://github.com/phillbaker/terraform-provider-elasticsearch/releases/download/v0.1.0/terraform-provider-elasticsearch-darwin"
sha256 "06c014db12cffaca3631b1e1a9efaaeb01404ad9295e78d5bbea74770f2ad6fa"
bottle :unneeded
def install
bin.install "terraform-provider-elasticsearch-darwin" => "terraform-provider-elasticsearch"
end
test do
system "which #{bin}/terraform-provider-elasticsearch"
end
end
class TerraformProviderMailgunv3 < Formula
desc " mailgun provider for terraform based on v3 of the api"
homepage "https://github.com/phillbaker/terraform-provider-mailgunv3"
url "https://github.com/phillbaker/terraform-provider-mailgunv3/releases/download/v0.1.1/terraform-provider-mailgunv3-darwin"
sha256 "8e2513147e87b408372f1b6dedd4fdde0e48ffc6dfc86f705766b6f1a1d13871"
bottle :unneeded
def install
bin.install "terraform-provider-mailgunv3-darwin" => "terraform-provider-mailgunv3"
end
test do
system "which #{bin}/terraform-provider-mailgunv3"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment