iam-policy-json-to-terraform: Init at 1.8.0
(#178035)
This commit is contained in:
parent
7cbb914847
commit
c9507b994f
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/misc/iam-policy-json-to-terraform/default.nix
Normal file
23
pkgs/tools/misc/iam-policy-json-to-terraform/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "iam-policy-json-to-terraform";
|
||||
version = "1.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "flosell";
|
||||
repo = pname;
|
||||
rev = "${version}";
|
||||
sha256 = "sha256-1OQvm3M/n/8F3QHNfPlq9YQVyV97NlHX3dXWA/VXEZU=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-Fn5GgGW9QhnQOKV34Kzl1Yctv3XLQ51lCuuGx5kvlIA=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Small tool to convert an IAM Policy in JSON format into a Terraform aws_iam_policy_document ";
|
||||
homepage = "https://github.com/flosell/iam-policy-json-to-terraform";
|
||||
changelog = "https://github.com/flosell/iam-policy-json-to-terraform/releases/tag/${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.ivankovnatsky ];
|
||||
};
|
||||
}
|
|
@ -1923,6 +1923,8 @@ with pkgs;
|
|||
|
||||
iamy = callPackage ../tools/admin/iamy { };
|
||||
|
||||
iam-policy-json-to-terraform = callPackage ../tools/misc/iam-policy-json-to-terraform { };
|
||||
|
||||
azure-cli = callPackage ../tools/admin/azure-cli { };
|
||||
|
||||
azure-functions-core-tools = callPackage ../development/tools/azure-functions-core-tools { };
|
||||
|
|
Loading…
Reference in a new issue