terrascan: init at 1.2.0
This commit is contained in:
parent
a945fdb483
commit
af94d8ca0c
33
pkgs/tools/security/terrascan/default.nix
Normal file
33
pkgs/tools/security/terrascan/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, lib
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "terrascan";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "accurics";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1kjis0ylvmv1gvzp5qvi9a7x4611bjv8yx5mb6nkc0a8lscwb4c3";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "0yfybzwjvnan4qf5w25k22iwh5hp9v8si93p4jv9bx25rw91swws";
|
||||||
|
|
||||||
|
# tests want to download a vulnerable Terraform project
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Detect compliance and security violations across Infrastructure";
|
||||||
|
longDescription = ''
|
||||||
|
Detect compliance and security violations across Infrastructure as Code to
|
||||||
|
mitigate risk before provisioning cloud native infrastructure. It contains
|
||||||
|
500+ polices and support for Terraform and Kubernetes.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/accurics/terrascan";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -12186,6 +12186,8 @@ in
|
|||||||
|
|
||||||
terraformer = callPackage ../development/tools/misc/terraformer { };
|
terraformer = callPackage ../development/tools/misc/terraformer { };
|
||||||
|
|
||||||
|
terrascan = callPackage ../tools/security/terrascan { };
|
||||||
|
|
||||||
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
|
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
|
||||||
texinfo4 = texinfo413;
|
texinfo4 = texinfo413;
|
||||||
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
|
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
|
||||||
|
Loading…
Reference in New Issue
Block a user