iam-policy-json-to-terraform: Init at `1.8.0` (#178035)

main
Ivan Kovnatsky 2 years ago committed by GitHub
parent 7cbb914847
commit c9507b994f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      pkgs/tools/misc/iam-policy-json-to-terraform/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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…
Cancel
Save