generated from clouddrove/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
outputs.tf
24 lines (24 loc) · 1.13 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
output "sentinel_id" {
value = try(azurerm_sentinel_log_analytics_workspace_onboarding.main[0].id, null)
description = "The ID of the Security Insights Sentinel Onboarding States."
}
output "iot_id" {
value = try(azurerm_sentinel_data_connector_iot.main[0].id, null)
description = "The ID of the Iot Data Connector."
}
output "security_center_id" {
value = try(azurerm_sentinel_data_connector_azure_security_center.main[0].id, null)
description = "The ID of the Azure Security Center Data Connector."
}
output "dtc_ad_id" {
value = try(azurerm_sentinel_data_connector_azure_active_directory.main[0].id, null)
description = " The ID of the Azure Active Directory Data Connector."
}
output "dtc_threat_protection_id" {
value = try(azurerm_sentinel_data_connector_azure_advanced_threat_protection.main[0].id, null)
description = "The ID of the Azure Advanced Threat Protection Data Connector."
}
output "dtc_ms_cloud_app_security_id" {
value = try(azurerm_sentinel_data_connector_microsoft_cloud_app_security.main[0].id, null)
description = "The ID of the Microsoft Cloud App Security Data Connector."
}