-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
28 lines (23 loc) · 971 Bytes
/
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
output "aws_route53_zone_domains" {
description = "Exported Attributes for `aws_route53_zone.domains`."
value = aws_route53_zone.domains
}
output "aws_route53_zone_svcs_dev_subdomains" {
description = "Exported Attributes for `aws_route53_zone.svcs_dev_subdomains`."
value = aws_route53_zone.svcs_dev_subdomains
}
output "gandi_nameservers" {
description = "Exported Attributes for `gandi_nameservers`."
value = gandi_nameservers.domains
}
output "google_search_console_urls" {
description = "Google Search Console URLs."
# iterate over Repository Objects and assign `full_name` as value
value = {
for identifier, domain in var.domains : identifier => "https://search.google.com/search-console?resource_id=sc-domain%3A${domain.name}"
}
}
output "tfe_workspace_terraform_version" {
description = "Terraform version identifier of current HCP Terraform Workspace."
value = data.tfe_workspace.main.terraform_version
}