tflint-plugins.tflint-ruleset-google
: init
This commit is contained in:
parent
0188c8758f
commit
41e9f51a78
@ -8502,6 +8502,12 @@
|
|||||||
githubId = 6321578;
|
githubId = 6321578;
|
||||||
name = "John Rinehart";
|
name = "John Rinehart";
|
||||||
};
|
};
|
||||||
|
john-rodewald = {
|
||||||
|
email = "jnrodewald99@gmail.com";
|
||||||
|
github = "john-rodewald";
|
||||||
|
githubId = 51028009;
|
||||||
|
name = "John Rodewald";
|
||||||
|
};
|
||||||
john-shaffer = {
|
john-shaffer = {
|
||||||
email = "jdsha@proton.me";
|
email = "jdsha@proton.me";
|
||||||
github = "john-shaffer";
|
github = "john-shaffer";
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
{ callPackage, ... }: {
|
{ callPackage, ... }: {
|
||||||
tflint-ruleset-aws = callPackage ./tflint-ruleset-aws.nix { };
|
tflint-ruleset-aws = callPackage ./tflint-ruleset-aws.nix { };
|
||||||
|
tflint-ruleset-google = callPackage ./tflint-ruleset-google.nix { };
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,38 @@
|
|||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "tflint-ruleset-google";
|
||||||
|
version = "0.24.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "terraform-linters";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-1eF/uzOYP/gi+ooHN8OfCR2nz+/z98theO0Lr/BBhWM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-owpNcsxuP+sG27vv9V7ArMK1NLBNbnw11KpdpVyWAD0=";
|
||||||
|
|
||||||
|
# upstream Makefile also does a go test $(go list ./... | grep -v integration)
|
||||||
|
preCheck = ''
|
||||||
|
rm integration/integration_test.go
|
||||||
|
'';
|
||||||
|
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/github.com/terraform-linters/${pname}/${version}
|
||||||
|
mv $out/bin/${pname} $out/github.com/terraform-linters/${pname}/${version}/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/terraform-linters/tflint-ruleset-google";
|
||||||
|
description = "TFLint ruleset plugin for Terraform Google Provider";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ john-rodewald ];
|
||||||
|
license = with licenses; [ mpl20 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user