forked from hashicorp/python-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask_result.py
More file actions
36 lines (25 loc) · 806 Bytes
/
Copy pathtask_result.py
File metadata and controls
36 lines (25 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import os
from pytfe import TFEClient
def main():
token = os.getenv("TFE_TOKEN")
task_result_id = os.getenv("TFE_TASK_RESULT_ID")
if not token:
print("Set TFE_TOKEN")
return
if not task_result_id:
print("Set TFE_TASK_RESULT_ID")
return
client = TFEClient()
try:
result = client.task_results.read(task_result_id)
print("=== Task Result ===")
print(f"ID: {result.id}")
print(f"Status: {result.status}")
print(f"Message: {result.message}")
print(f"Task Name: {result.task_name}")
print(f"URL: {result.url}")
print(f"Task Stage: {result.task_stage.id if result.task_stage else None}")
except Exception as e:
print(f"Error: {e}")
if __name__ == "__main__":
main()