From 9d69a6ed5e839dd92d51a8af72c265f4e7f18775 Mon Sep 17 00:00:00 2001 From: Joseph Page Date: Wed, 3 May 2023 15:31:57 +0200 Subject: [PATCH] fix: remove the log_drain_url in output because not relevant --- output.tf | 5 ----- 1 file changed, 5 deletions(-) diff --git a/output.tf b/output.tf index 062fea7..8414620 100644 --- a/output.tf +++ b/output.tf @@ -22,8 +22,3 @@ output "region" { description = "Region where the application is deployed." value = local.current_region } - -output "log_drain_url" { - description = "URL of the drain to use by Scalingo to send logs to your log management system. (Note: the username and password are included in the URL, be careful with the security of this URL.). It's already marked as sensitive to avoid leaking it in the Terraform state." - value = sensitive(scalingo_app.log_drain.drain_url) -}