From d92fa63e415e006825d1ac0e2b8e010e331f9894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Pr=C3=B6sl?= Date: Sat, 30 Sep 2023 17:12:12 +0200 Subject: [PATCH] set k3s_token output to sensitive To reduce the risk of accidentally exporting sensitive data that was intended to be only internal, Terraform requires that any root module output containing sensitive data be explicitly marked as sensitive, to confirm your intent. If you do intend to export this data, annotate the output value as sensitive by adding the following argument: sensitive = true --- output.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/output.tf b/output.tf index 0faf83de..10a72491 100644 --- a/output.tf +++ b/output.tf @@ -45,6 +45,7 @@ output "k3s_endpoint" { output "k3s_token" { description = "The k3s token to register new nodes" value = local.k3s_token + sensitive = true } # Keeping for backward compatibility