From 841172497191c1613393fad1ca2c21849f6ec1df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Fri, 5 Jul 2024 14:09:01 +0200 Subject: [PATCH] feat: output for the kubeconfig filename (#22) --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index c93024d..dd80a82 100644 --- a/outputs.tf +++ b/outputs.tf @@ -12,3 +12,8 @@ output "control_server_ipv4" { description = "Public IPv4 of the control node" value = hcloud_server.control.ipv4_address } + +output "kubeconfig_filename" { + description = "Path to the Kubeconfig file" + value = data.local_sensitive_file.kubeconfig.filename +}