generated from clouddrove/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
79 lines (64 loc) · 3.02 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
output "dns_zone_id" {
value = try(azurerm_dns_zone.dns_zone[0].id, null)
description = "The DNS Zone ID."
}
output "dns_zone_number_of_record_sets" {
value = try(azurerm_dns_zone.dns_zone[0].number_of_record_sets, null)
description = "The number of records already in the zone."
}
output "dns_zone_name_servers" {
value = try(azurerm_dns_zone.dns_zone[0].name_servers, null)
description = " A list of values that make up the NS record for the zone."
}
output "dns_zone_max_number_of_record_sets" {
value = try(azurerm_dns_zone.dns_zone[0].max_number_of_record_sets, null)
description = " Maximum number of Records in the zone. Defaults to 1000."
}
output "private_dns_zone_id" {
value = try(azurerm_private_dns_zone.private_dns_zone[0].id, null)
description = "The Private DNS Zone ID."
}
output "private_dns_zone_number_of_record_sets" {
value = try(azurerm_private_dns_zone.private_dns_zone[0].number_of_record_sets, null)
description = "The current number of record sets in this Private DNS zone."
}
output "private_dns_zone_max_number_of_record_sets" {
value = try(azurerm_private_dns_zone.private_dns_zone[0].max_number_of_record_sets, null)
description = "The maximum number of record sets that can be created in this Private DNS zone."
}
output "private_dns_zone_max_number_of_virtual_network_links" {
value = try(azurerm_private_dns_zone.private_dns_zone[0].max_number_of_virtual_network_links, null)
description = "The maximum number of virtual networks that can be linked to this Private DNS zone."
}
output "private_dns_zone_max_number_of_virtual_network_links_with_registration" {
value = try(azurerm_private_dns_zone.private_dns_zone[0].max_number_of_virtual_network_links_with_registration, null)
description = "The maximum number of virtual networks that can be linked to this Private DNS zone with registration enabled."
}
output "private_dns_zone_virtual_network_link_id" {
value = try(azurerm_private_dns_zone_virtual_network_link.private_dns_vnet_link[0].id, null)
description = "The ID of the Private DNS Zone Virtual Network Link."
}
output "dns_a_record_id" {
value = try(values(azurerm_dns_a_record.records_a)[*].id, null)
description = " The DNS A Record ID."
}
output "dns_cname_record_id" {
value = try(values(azurerm_dns_cname_record.records_cname)[*].id, null)
description = " The DNS CNAME Record ID."
}
output "dns_ns_record_id" {
value = try(values(azurerm_dns_ns_record.records_ns)[*].id, null)
description = " The DNS NS Record ID."
}
output "dns_a_record_fqdn" {
value = try(values(azurerm_dns_a_record.records_a)[*].fqdn, null)
description = "The FQDN of the DNS A Record."
}
output "dns_cname_record_fqdn" {
value = try(values(azurerm_dns_cname_record.records_cname)[*].fqdn, null)
description = "The FQDN of the DNS CNAME Record."
}
output "dns_ns_record_fqdn" {
value = try(values(azurerm_dns_ns_record.records_ns)[*].fqdn, null)
description = "The FQDN of the DNS NS Record."
}