generated from libre-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
21 lines (18 loc) · 978 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
output "event_subscription_ids" {
description = "The IDs of the Event Grid System Topic Event Subscriptions."
value = { for sub in azurerm_eventgrid_system_topic_event_subscription.event_subscription : sub.name => sub.id }
}
output "event_subscription_names" {
description = "The names of the Event Grid System Topic Event Subscriptions."
value = [for sub in azurerm_eventgrid_system_topic_event_subscription.event_subscription : sub.name]
}
output "event_subscription_rg_names" {
description = "The resource group names of the Event Grid System Topic Event Subscriptions."
value = [
for sub in azurerm_eventgrid_system_topic_event_subscription.event_subscription : sub.resource_group_name
]
}
output "event_subscription_topic_names" {
description = "The names of the System Topics associated with the Event Subscriptions."
value = [for sub in azurerm_eventgrid_system_topic_event_subscription.event_subscription : sub.system_topic]
}