From 650386d54e9ef9832656c4df887436dfa4b13e6c Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Thu, 12 Sep 2024 01:02:19 +0300 Subject: [PATCH] Update outputs.tf --- examples/complete/outputs.tf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/examples/complete/outputs.tf b/examples/complete/outputs.tf index 744c3ca..a0618d9 100644 --- a/examples/complete/outputs.tf +++ b/examples/complete/outputs.tf @@ -1,7 +1,9 @@ output "service_account_name" { - value = module.tfc_agent.service_account_name + value = module.tfc_agent.service_account_name + description = "Name of the Kubernetes service account" } output "namespace" { - value = module.tfc_agent.namespace -} \ No newline at end of file + value = module.tfc_agent.namespace + description = "Name of the Kubernetes namespace" +}