generated from cyber-scot/terraform-module-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
29 lines (24 loc) Β· 891 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
25
26
27
28
29
output "network_group_ids" {
description = "A map of network group names to their respective IDs."
value = { for name, group in azurerm_network_manager_network_group.groups : name => group.id }
}
output "network_group_names" {
description = "The list of network group names."
value = var.network_groups
}
output "network_manager_id" {
description = "The ID of the Azure Network Manager."
value = azurerm_network_manager.avnm.id
}
output "network_manager_name" {
description = "The name of the Azure Network Manager."
value = azurerm_network_manager.avnm.name
}
output "network_manager_scope" {
description = "The scope of the Azure Network Manager."
value = azurerm_network_manager.avnm.scope
}
output "network_manager_tags" {
description = "The tags of the Azure Network Manager."
value = azurerm_network_manager.avnm.tags
}