-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
86 lines (71 loc) · 3.47 KB
/
output.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
80
81
82
83
84
85
86
output "id" {
value = azurerm_private_dns_zone.pdz.id
description = "The Private DNS Zone ID."
}
output "name" {
value = azurerm_private_dns_zone.pdz.name
description = "The name of the Private DNS zone."
}
output "resource_group_name" {
value = azurerm_private_dns_zone.pdz.resource_group_name
description = "The name of the resource group in which to create the Private DNS zone."
}
output "tags" {
value = azurerm_private_dns_zone.pdz.tags
description = "The tags assigned to the resource."
}
output "number_of_record_sets" {
value = azurerm_private_dns_zone.pdz.number_of_record_sets
description = "The current number of record sets in this Private DNS zone."
}
output "max_number_of_record_sets" {
value = azurerm_private_dns_zone.pdz.max_number_of_record_sets
description = "The maximum number of record sets that can be created in this Private DNS zone."
}
output "max_number_of_virtual_network_links" {
value = azurerm_private_dns_zone.pdz.max_number_of_virtual_network_links
description = "The maximum number of virtual networks that can be linked to this Private DNS zone."
}
output "max_number_of_virtual_network_links_with_registration" {
value = azurerm_private_dns_zone.pdz.max_number_of_virtual_network_links_with_registration
description = "The maximum number of virtual networks that can be linked to this Private DNS zone with registration enabled."
}
output "soa_record" {
value = azurerm_private_dns_zone.pdz.soa_record
description = "Block containing configuration of SOA record."
}
output "a_records" {
value = { for a_record in azurerm_private_dns_a_record.a_records : a_record.name => a_record }
description = "Blocks containing configuration of each A record."
# module.MODULE_NAME.a_records["A_RECORD_NAME"].id
}
output "aaaa_records" {
value = { for aaaa_record in azurerm_private_dns_aaaa_record.aaaa_records : aaaa_record.name => aaaa_record }
description = "Blocks containing configuration of each AAAA record."
# module.MODULE_NAME.aaaa_records["AAAA_RECORD_NAME"].id
}
output "cname_records" {
value = { for cname_record in azurerm_private_dns_cname_record.cname_records : cname_record.name => cname_record }
description = "Blocks containing configuration of each CNAME record."
# module.MODULE_NAME.cname_records["CNAME_RECORD_NAME"].id
}
output "mx_records" {
value = { for mx_record in azurerm_private_dns_mx_record.mx_records : mx_record.name => mx_record }
description = "Blocks containing configuration of each MX record."
# module.MODULE_NAME.mx_records["MX_RECORD_NAME"].id
}
output "ptr_records" {
value = { for ptr_record in azurerm_private_dns_ptr_record.ptr_records : ptr_record.name => ptr_record }
description = "Blocks containing configuration of each PTR record."
# module.MODULE_NAME.ptr_records["PTS_RECORD_NAME"].id
}
output "srv_records" {
value = { for srv_record in azurerm_private_dns_srv_record.srv_records : srv_record.name => srv_record }
description = "Blocks containing configuration of each SRV record."
# module.MODULE_NAME.srv_records["SRV_RECORD_NAME"].id
}
output "txt_records" {
value = { for txt_record in azurerm_private_dns_txt_record.txt_records : txt_record.name => txt_record }
description = "Blocks containing configuration of each TXT record."
# module.MODULE_NAME.txt_records["TXT_RECORD_NAME"].id
}