From de1f23b00945a6e692c48ef8cd30d05487319e55 Mon Sep 17 00:00:00 2001 From: Mike Bell Date: Mon, 15 Apr 2024 12:07:53 +0100 Subject: [PATCH] Fix platform string --- runbooks/source/working-with-tflock.html.md.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbooks/source/working-with-tflock.html.md.erb b/runbooks/source/working-with-tflock.html.md.erb index eea5984e..eabd106a 100644 --- a/runbooks/source/working-with-tflock.html.md.erb +++ b/runbooks/source/working-with-tflock.html.md.erb @@ -34,7 +34,7 @@ Due to the architecture difference between our mac m* chips and the pipeline eve Because the team is mainly on mac m* chips we are generally running a different architecture (arm64) to the terraform that will run in the pipeline (amd64). Therefore if we want to commit a compatible lock file you must run before adding it to git: ``` -terraform providers lock -platform=amd64 +terraform providers lock -platform=linux_amd64 ``` #### Further reading