From 11bab2c8f28baa3da12aa1369b69f2a78a98e499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1muel=20Fekete?= Date: Sat, 30 Mar 2024 22:20:06 +0100 Subject: [PATCH] make cs sensitive --- infra/appinsights.tf | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/infra/appinsights.tf b/infra/appinsights.tf index cc13c16..b5b17a2 100644 --- a/infra/appinsights.tf +++ b/infra/appinsights.tf @@ -6,9 +6,6 @@ resource "azurerm_application_insights" "appinsights" { } output "appinsights_connection_string" { - value = azurerm_application_insights.appinsights.connection_string -} - -output "app_id" { - value = azurerm_application_insights.appinsights.app_id + value = azurerm_application_insights.appinsights.connection_string + sensitive = true }