From 51e0d8acba022e5970e3759f189a92533db0ff63 Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Thu, 27 Apr 2023 20:48:53 -0500 Subject: [PATCH] Feat: add error property in latestDeploymentLog --- client/environment.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client/environment.go b/client/environment.go index cf4838ef..5d63e6e0 100644 --- a/client/environment.go +++ b/client/environment.go @@ -89,6 +89,7 @@ type DeploymentLog struct { BlueprintRepository string `json:"blueprintRepository"` BlueprintRevision string `json:"blueprintRevision"` Output json.RawMessage `json:"output,omitempty"` + Error json.RawMessage `json:"error,omitempty"` Type string `json:"type"` WorkflowFile *WorkflowFile `json:"workflowFile,omitempty" tfschema:"-"` }