-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
35 lines (29 loc) · 1.25 KB
/
outputs.tf
File metadata and controls
35 lines (29 loc) · 1.25 KB
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
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 ||| The zone ID of the AWS Route53 Zone for the created subdomain."
}
output "nameservers" {
value = local.subdomain_nameservers
description = "list(string) ||| The list of nameservers of the AWS Route53 Zone for the created subdomain."
}
output "domain_name" {
value = local.domain_name
description = "string ||| The name of the root domain."
}
output "domain_zone_id" {
value = local.domain_zone_id
description = "string ||| The zone ID of the root domain."
}
output "delegator" {
value = local.is_passthrough ? data.ns_connection.domain.outputs.delegator : (var.create_delegator ? module.delegator[0].delegator : { name : "", access_key : "", secret_key : "" })
description = "object({ name: string, access_key: string, secret_key: string }) ||| "
sensitive = true
}