terraform: switch to 1.0

Default to the stable release
This commit is contained in:
zimbatm 2021-06-15 10:51:50 +02:00
parent 355aa90cfc
commit 01b6046594
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7
2 changed files with 2 additions and 2 deletions

View file

@ -210,7 +210,7 @@ rec {
mainTf = writeText "main.tf" '' mainTf = writeText "main.tf" ''
resource "random_id" "test" {} resource "random_id" "test" {}
''; '';
terraform = terraform_0_12.withPlugins (p: [ p.random ]); terraform = terraform_1_0.withPlugins (p: [ p.random ]);
test = test =
runCommand "terraform-plugin-test" { buildInputs = [ terraform ]; } '' runCommand "terraform-plugin-test" { buildInputs = [ terraform ]; } ''
set -e set -e

View file

@ -31251,7 +31251,7 @@ in
terraform_plugins_test terraform_plugins_test
; ;
terraform = terraform_0_12; terraform = terraform_1_0;
# deprecated # deprecated
terraform-full = terraform.full; terraform-full = terraform.full;