From b93fa4bcea1ee977a7699a6eb7944a30b5a71709 Mon Sep 17 00:00:00 2001 From: Jeremy White Date: Fri, 13 Dec 2024 14:57:45 -0500 Subject: [PATCH] feat(action/outputs): add plan file and plan json (#95) --- action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/action.yml b/action.yml index 4110aeb20..43615b668 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"