From 1ddb2385f0b96eda477d76dde9f326aa4f1c037e Mon Sep 17 00:00:00 2001 From: Yaron Yarimi Date: Tue, 13 Aug 2024 21:55:27 +0300 Subject: [PATCH] changed readme to treat arm as default instead of amd --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 50be817a..2f656d8f 100644 --- a/README.md +++ b/README.md @@ -102,8 +102,8 @@ resource "env0_template" "example" { ### Run local version of the provider - Build - `./build.sh` -- Create the plugins folder - `mkdir -p ~/.terraform.d/plugins/terraform.env0.com/local/env0/6.6.6/darwin_amd64` (for M1 processor, replace `amd64` with `arm64`) -- Copy the built binary - `cp ./terraform-provider-env0 ~/.terraform.d/plugins/terraform.env0.com/local/env0/6.6.6/darwin_amd64` (Replace `darwin` with `linux` on Linux) +- Create the plugins folder - `mkdir -p ~/.terraform.d/plugins/terraform.env0.com/local/env0/6.6.6/darwin_arm64` (for Intel processor, replace `arm64` with `amd64`) +- Copy the built binary - `cp ./terraform-provider-env0 ~/.terraform.d/plugins/terraform.env0.com/local/env0/6.6.6/darwin_arm64` (Replace `darwin` with `linux` on Linux) - Require the local provider in your `main.tf` - ```