We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3d8f1 commit 0ae63b3Copy full SHA for 0ae63b3
1 file changed
outputs.tf
@@ -187,3 +187,13 @@ output "username" {
187
sensitive = true
188
value = azurerm_kubernetes_cluster.main.kube_config[0].username
189
}
190
+
191
+output "azurerm_log_analytics_workspace_id" {
192
+ description = "The id of the created Log Analytics workspace"
193
+ value = try(azurerm_log_analytics_workspace.main[0].id, null)
194
+}
195
196
+output "azurerm_log_analytics_workspace_name" {
197
+ description = "The name of the created Log Analytics workspace"
198
+ value = try(azurerm_log_analytics_workspace.main[0].name, null)
199
0 commit comments