From ebe62c7c851d54f6b59b3e229ef0cc8b47e185c7 Mon Sep 17 00:00:00 2001 From: j-dunham Date: Fri, 12 Aug 2022 15:38:03 -0400 Subject: [PATCH] Update valet-custom-transformers-lab.md --- gitlab/valet-custom-transformers-lab.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitlab/valet-custom-transformers-lab.md b/gitlab/valet-custom-transformers-lab.md index 5861700..64b5f9d 100644 --- a/gitlab/valet-custom-transformers-lab.md +++ b/gitlab/valet-custom-transformers-lab.md @@ -64,11 +64,11 @@ jobs: - Custom transformers files also let up replace value of `variables` by using the `env` method. Lets replace the value for `PLAN_JSON` by adding the this line to the top of our ruby file. The first value of the `env` method is the target variable name and the second is the new value. ```ruby - env "PLAN_JSON", "my_plan.json" + env "PLAN_JSON", "custom_plan.json" ``` - create a new file in the root of the workspace called `transformers.rb` with below contents ```ruby - env "PLAN_JSON", "my_plan.json" + env "PLAN_JSON", "custom_plan.json" transform "artifacts.terraform" do |item| {