From 51c28d600a23b58f93940b04757beaef88ef70bb Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 8 Dec 2020 04:20:00 +0000 Subject: [PATCH] terraform_0_11: drop Terraform 0.11 is being deprecated https://www.hashicorp.com/blog/deprecating-terraform-0-11-support-in-terraform-providers --- .../networking/cluster/terraform/default.nix | 11 +---------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 1 insertion(+), 12 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 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e198d3ca5d16..f445d0f2dfb1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -28264,8 +28264,6 @@ in termpdfpy = python3Packages.callPackage ../applications/misc/termpdf.py {}; inherit (callPackage ../applications/networking/cluster/terraform { }) - terraform_0_11 - terraform_0_11-full terraform_0_12 terraform_0_13 terraform_0_14