From bb2ffc9c563a62700a84a5a9ec8ff0adb12eb0a8 Mon Sep 17 00:00:00 2001 From: Garron Haun <49570383+Crash-GHaun@users.noreply.github.com> Date: Tue, 24 Sep 2024 16:35:09 -0700 Subject: [PATCH] Update main.tf with file("example.private-key.pem") --- examples/gh-runner-gke-simple/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gh-runner-gke-simple/main.tf b/examples/gh-runner-gke-simple/main.tf index 4c16d36..60c7136 100644 --- a/examples/gh-runner-gke-simple/main.tf +++ b/examples/gh-runner-gke-simple/main.tf @@ -23,6 +23,6 @@ module "runner-gke" { cluster_suffix = "k8s" gh_app_id = "123456" gh_app_installation_id = "12345678" - gh_app_private_key = "sample" + gh_app_private_key = file("example.private-key.pem") gh_config_url = "https://github.com/ORGANIZATION" }