about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-12-08 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2020-12-08 04:20:00 +0000
commit51c28d600a23b58f93940b04757beaef88ef70bb (patch)
tree238959512811df2565da559f6c3ba3d039236b2a /pkgs/applications/networking/cluster
parent43fbe068192b740b291587f4783c1fe4d6c2ca8f (diff)
downloadnixlib-51c28d600a23b58f93940b04757beaef88ef70bb.tar
nixlib-51c28d600a23b58f93940b04757beaef88ef70bb.tar.gz
nixlib-51c28d600a23b58f93940b04757beaef88ef70bb.tar.bz2
nixlib-51c28d600a23b58f93940b04757beaef88ef70bb.tar.lz
nixlib-51c28d600a23b58f93940b04757beaef88ef70bb.tar.xz
nixlib-51c28d600a23b58f93940b04757beaef88ef70bb.tar.zst
nixlib-51c28d600a23b58f93940b04757beaef88ef70bb.zip
terraform_0_11: drop
Terraform 0.11 is being deprecated https://www.hashicorp.com/blog/deprecating-terraform-0-11-support-in-terraform-providers
Diffstat (limited to 'pkgs/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/terraform/default.nix11
1 files changed, 1 insertions, 10 deletions
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index d8c17a89e69b..cf289d96e517 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -135,15 +135,6 @@ let
     "recurseForDerivations"
   ];
 in rec {
-  terraform_0_11 = pluggable (generic {
-    version = "0.11.14";
-    sha256 = "1bzz5wy13gh8j47mxxp6ij6yh20xmxd9n5lidaln3mf1bil19dmc";
-    patches = [ ./provider-path.patch ];
-    passthru = { inherit plugins; };
-  });
-
-  terraform_0_11-full = terraform_0_11.full;
-
   terraform_0_12 = pluggable (generic {
     version = "0.12.29";
     sha256 = "18i7vkvnvfybwzhww8d84cyh93xfbwswcnwfrgvcny1qwm8rsaj8";
@@ -180,7 +171,7 @@ in rec {
     mainTf = writeText "main.tf" ''
       resource "random_id" "test" {}
     '';
-    terraform = terraform_0_11.withPlugins (p: [ p.random ]);
+    terraform = terraform_0_12.withPlugins (p: [ p.random ]);
     test =
       runCommand "terraform-plugin-test" { buildInputs = [ terraform ]; } ''
         set -e