generated from cyber-scot/terraform-module-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
59 lines (48 loc) · 2.52 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
output "dns_forwarding_ruleset_ids" {
value = { for k, v in azurerm_private_dns_resolver_dns_forwarding_ruleset.ruleset : k => v.id }
description = "A map of DNS Forwarding Ruleset IDs, keyed by the ruleset name."
}
output "dns_forwarding_ruleset_names" {
value = { for k, v in azurerm_private_dns_resolver_dns_forwarding_ruleset.ruleset : k => v.name }
description = "A map of DNS Forwarding Ruleset names, keyed by the ruleset name."
}
output "forwarding_rule_ids" {
value = { for k, v in azurerm_private_dns_resolver_forwarding_rule.rules : k => v.id }
description = "A map of forwarding rule IDs for the DNS resolver, keyed by the rule name."
}
output "forwarding_rule_names" {
value = { for k, v in azurerm_private_dns_resolver_forwarding_rule.rules : k => v.name }
description = "A map of forwarding rule names for the DNS resolver, keyed by the rule name."
}
output "inbound_endpoint_id" {
value = azurerm_private_dns_resolver_inbound_endpoint.inbound_endpoint.id
description = "The ID of the inbound endpoint associated with the Azure Private DNS Resolver."
}
output "inbound_endpoint_name" {
value = azurerm_private_dns_resolver_inbound_endpoint.inbound_endpoint.name
description = "The name of the inbound endpoint associated with the Azure Private DNS Resolver."
}
output "outbound_endpoint_id" {
value = azurerm_private_dns_resolver_outbound_endpoint.outbound_endpoint.id
description = "The ID of the outbound endpoint associated with the Azure Private DNS Resolver."
}
output "outbound_endpoint_name" {
value = azurerm_private_dns_resolver_outbound_endpoint.outbound_endpoint.name
description = "The name of the outbound endpoint associated with the Azure Private DNS Resolver."
}
output "private_dns_resolver_id" {
value = azurerm_private_dns_resolver.resolver.id
description = "The ID of the Azure Private DNS Resolver."
}
output "private_dns_resolver_name" {
value = azurerm_private_dns_resolver.resolver.name
description = "The name of the Azure Private DNS Resolver."
}
output "virtual_network_link_ids" {
value = { for k, v in azurerm_private_dns_resolver_virtual_network_link.vnet_link : k => v.id }
description = "A map of Virtual Network Link IDs for the DNS resolver, keyed by the link name."
}
output "virtual_network_link_names" {
value = { for k, v in azurerm_private_dns_resolver_virtual_network_link.vnet_link : k => v.name }
description = "A map of Virtual Network Link names for the DNS resolver, keyed by the link name."
}