Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:change in count condition #4

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
output "sentinel_id" {
value = join("", azurerm_sentinel_log_analytics_workspace_onboarding.main.*.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 = join("", azurerm_sentinel_data_connector_iot.main.*.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 = join("", azurerm_sentinel_data_connector_azure_security_center.main.*.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 = join("", azurerm_sentinel_data_connector_azure_active_directory.main.*.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 = join("", azurerm_sentinel_data_connector_azure_advanced_threat_protection.main.*.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 = join("", azurerm_sentinel_data_connector_microsoft_cloud_app_security.main.*.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."
}
Loading