generated from cncsc/template-terraform-module
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
59 lines (48 loc) · 1.61 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 "zone_id" {
value = module.zone.id
description = "The zone ID of the zone."
}
output "plan" {
value = module.zone.plan
description = "The name of the commercial plan applied to the zone."
}
output "name_servers" {
value = module.zone.name_servers
description = "A list of Cloudflare-assigned name servers. This is only populated for zones that use Cloudflare DNS."
}
output "dnssec_algorithm" {
value = module.zone.dnssec_algorithm
description = "The DNSSEC algorithm configured for this zone."
}
output "dnssec_digest" {
value = module.zone.dnssec_digest
description = "The DNSSEC digest check value for this zone."
}
output "dnssec_digest_algorithm" {
value = module.zone.dnssec_digest_algorithm
description = "The DNSSEC digest algorithm configured for this zone."
}
output "dnssec_digest_type" {
value = module.zone.dnssec_digest_type
description = "The DNSSEC digest type configured for this zone."
}
output "dnssec_ds" {
value = module.zone.dnssec_ds
description = "The DS record value for this zone."
}
output "dnssec_flags" {
value = module.zone.dnssec_flags
description = "The DNSSEC flags configured for this zone."
}
output "dnssec_key_tag" {
value = module.zone.dnssec_key_tag
description = "The DNSSEC key tag configured for this zone."
}
output "dnssec_key_type" {
value = module.zone.dnssec_key_type
description = "The DNSSEC key type configured for this zone."
}
output "dnssec_public_key" {
value = module.zone.dnssec_public_key
description = "The DNSSEC public key configured for this zone."
}