-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (32 loc) · 1.29 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
output "name" {
value = local.subdomain_name
description = "string ||| The name of the created subdomain. (Format: '{{dns_name}}[.{{env}}].{{domain}}')"
}
output "fqdn" {
value = local.fqdn
description = "string ||| The FQDN (fully-qualified domain name) for the created domain including the trailing '.'. (Format: '{{dns_name}}[.{{env}}].{{domain}}.')"
}
output "zone_id" {
value = local.subdomain_zone_id
description = "string ||| Google DNS Managed Zone ID (Format: projects/{{project}}/managedZones/{{name}})."
}
output "nameservers" {
value = local.subdomain_nameservers
description = "list(string) ||| List of Nameservers for Google DNS Managed Zone."
}
output "domain_name" {
value = local.domain_name
description = "string ||| The full DNS name of the domain for this subdomain."
}
output "certificate_id" {
value = local.certificate_id
description = "string ||| The ID of the Certificate in GCP Certificate Manager."
}
output "certificate_map_id" {
value = local.certificate_map_id
description = "string ||| The ID of the Certificate Map in GCP Certificate Manager."
}
output "certificate_map_name" {
value = local.certificate_map_name
description = "string ||| The name of the Certificate Map in GCP Certificate Manager."
}