generated from libre-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
24 lines (20 loc) · 969 Bytes
/
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 "action_group_id" {
description = "The ID of the Azure Monitor Action Group"
value = { for name, ag in azurerm_monitor_action_group.this : name => ag.id }
}
output "action_group_location" {
description = "The location of the Azure Monitor Action Group"
value = { for name, ag in azurerm_monitor_action_group.this : name => ag.location }
}
output "action_group_name" {
description = "The name of the Azure Monitor Action Group"
value = { for name, ag in azurerm_monitor_action_group.this : name => ag.name }
}
output "action_group_resource_group_name" {
description = "The resource group name where the Azure Monitor Action Group is located"
value = { for name, ag in azurerm_monitor_action_group.this : name => ag.resource_group_name }
}
output "action_group_tags" {
description = "The tags of the Azure Monitor Action Group"
value = { for name, ag in azurerm_monitor_action_group.this : name => ag.tags }
}