@@ -14,6 +14,7 @@ export interface TFModule {
id: number
kind: string
status: string
+ created_at: string
global_errors?: TFResourceError[]
// optional resources, if not created
resources?: TFResource[]
@@ -178,6 +178,7 @@ export const SharedStatus: React.FC<{
id: infra.id,
kind: infra.kind,
status: infra.status,
+ created_at: infra.created_at,
};
if (infra?.status != "created" && infra?.status != "destroyed") {