From 517817381677105f1fb635884b58857b93b52bad Mon Sep 17 00:00:00 2001 From: Daniele Monti <62102073+Monska85@users.noreply.github.com> Date: Wed, 4 Dec 2024 17:15:44 +0100 Subject: [PATCH] feat: add GKE default service account as output --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index 2de88d2..466fcb4 100644 --- a/outputs.tf +++ b/outputs.tf @@ -77,3 +77,8 @@ output "gitlab_namespace" { value = var.gitlab_namespace description = "The namespace where Gitlab is installed." } + +output "gke_service_account" { + value = module.gke.service_account + description = "The service account used by the GKE cluster." +}