From 90d411ac455030fdae4f36987b64f42e3445438c Mon Sep 17 00:00:00 2001 From: Jeremy White Date: Wed, 11 Dec 2024 18:25:20 -0500 Subject: [PATCH] feat(action/outputs): add plan file and plan json --- action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/action.yml b/action.yml index 4110aeb2..43615b66 100644 --- a/action.yml +++ b/action.yml @@ -63,6 +63,12 @@ outputs: summary: description: "Summary" value: "${{ steps.summary.outputs.result }}" + plan_file: + description: "Path to the terraform plan file" + value: "${{ steps.vars.outputs.plan_file }}" + plan_json: + description: "Path to the terraform plan in JSON format" + value: "${{ steps.vars.outputs.plan_file }}.json" runs: using: "composite"