From fb2086cb4e60852455bdc9d87ed912e2a30bdbb1 Mon Sep 17 00:00:00 2001 From: Bob Idle <102661087+bobidle@users.noreply.github.com> Date: Sun, 12 Mar 2023 22:30:21 +0100 Subject: [PATCH] Update link to terraform docs --- README.md | 2 +- libexec/tfenv-min-required | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9155dbe7..4ef1adf9 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ If a parameter is passed, available options: - `latest-allowed` is a syntax to scan your Terraform files to detect which version is maximally allowed. - `min-required` is a syntax to scan your Terraform files to detect which version is minimally required. -See [required_version](https://www.terraform.io/docs/configuration/terraform.html) docs. Also [see min-required & latest-allowed](#min-required) section below. +See [required_version](https://developer.hashicorp.com/terraform/language/settings) docs. Also [see min-required & latest-allowed](#min-required) section below. ```console $ tfenv install diff --git a/libexec/tfenv-min-required b/libexec/tfenv-min-required index 80d91b1b..ee1642c6 100755 --- a/libexec/tfenv-min-required +++ b/libexec/tfenv-min-required @@ -68,7 +68,7 @@ terraform { required_version = ">= 0.0.0" } -see https://www.terraform.io/docs/configuration/terraform.html for details'; +see https://developer.hashicorp.com/terraform/language/settings for details'; }; declare min_required="$(tfenv-min-required "${TFENV_DIR:-$(pwd)}")";