Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 98eff98

Browse files
authored
fix: Incorrect path of Runner logs (#2233)
Runner log paths where not updated after moving the default runner location to /opt/action-runner.
1 parent 58aa5ed commit 98eff98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: modules/runners/logging.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ locals {
1818
{
1919
"log_group_name" : "runner",
2020
"prefix_log_group" : true,
21-
"file_path" : var.runner_os == "windows" ? "C:/actions-runner/_diag/Runner_*.log" : "/home/runners/actions-runner/_diag/Runner_**.log",
21+
"file_path" : var.runner_os == "windows" ? "C:/actions-runner/_diag/Runner_*.log" : "/opt/actions-runner/_diag/Runner_**.log",
2222
"log_stream_name" : "{instance_id}"
2323
},
2424
{

0 commit comments

Comments
 (0)