From c13b42a5dee7b3ac110db7f2cdeca35d1232cbf1 Mon Sep 17 00:00:00 2001 From: Mike Peachey Date: Sat, 1 Oct 2022 16:31:12 +0100 Subject: [PATCH] Correct README.md references to TFENV_ARCH defaults Fixes #361 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1673fcd..b413ff6 100644 --- a/README.md +++ b/README.md @@ -145,10 +145,12 @@ terraform { ##### `TFENV_ARCH` -String (Default: amd64) +String (Default: `amd64`) Specify architecture. Architecture other than the default amd64 can be specified with the `TFENV_ARCH` environment variable +Note: Default changes to `arm64` for versions that have arm64 builds available when `$(uname -m)` matches `aarch64* | arm64*` + ```console $ TFENV_ARCH=arm64 tfenv install 0.7.9 ```