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-10 06:20:44 -0500
committerGitHub <noreply@github.com>2020-12-10 06:20:44 -0500
commitcc9c82074ea179460a1ca0b99322c1e52739f2f2 (patch)
treefa2e694995d99f665ffcd1dac735735ca762ca74 /pkgs/applications/networking/cluster
parent5d85bda128b37b64ec2c979b74479f7b1b6d3971 (diff)
parent51c28d600a23b58f93940b04757beaef88ef70bb (diff)
downloadnixlib-cc9c82074ea179460a1ca0b99322c1e52739f2f2.tar
nixlib-cc9c82074ea179460a1ca0b99322c1e52739f2f2.tar.gz
nixlib-cc9c82074ea179460a1ca0b99322c1e52739f2f2.tar.bz2
nixlib-cc9c82074ea179460a1ca0b99322c1e52739f2f2.tar.lz
nixlib-cc9c82074ea179460a1ca0b99322c1e52739f2f2.tar.xz
nixlib-cc9c82074ea179460a1ca0b99322c1e52739f2f2.tar.zst
nixlib-cc9c82074ea179460a1ca0b99322c1e52739f2f2.zip
Merge pull request #106373 from marsam/drop-terraform_0_11
terraform_0_11: drop
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 3477c0de1267..d18ec94ba8c5 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -136,15 +136,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";
@@ -181,7 +172,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