This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
outputs.tf
50 lines (40 loc) · 1.78 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
output "gcp_project" {
description = "The GCP Project where all resources are deployed."
value = var.gcp_project_id
}
output "gcp_region" {
description = "The GCP region where all resources are deployed."
value = module.consul_servers.gcp_region
}
output "cluster_size" {
description = "The number of servers in the Consul Server cluster."
value = var.consul_server_cluster_size
}
output "cluster_tag_name" {
description = "The tag assigned to each Consul Server node that is used to discover other Consul Server nodes."
value = var.consul_server_cluster_tag_name
}
output "instance_group_name" {
description = "The name of the Managed Instance Group that contains the Consul Server cluster."
value = module.consul_servers.instance_group_name
}
output "instance_group_url" {
description = "The URL of the Managed Instance Group that contains the Consul Server cluster."
value = module.consul_servers.instance_group_url
}
output "client_instance_group_name" {
description = "The name of the Managed Instance Group that contains the Consul Client cluster."
value = module.consul_clients.instance_group_name
}
output "instance_template_metadata_fingerprint" {
description = "A hash computed by the unique combination of metadata associated with the Instance Template used by the Consul Server cluster."
value = module.consul_servers.instance_template_metadata_fingerprint
}
output "instance_template_name" {
description = "The name of the Instance Template used by the Consul Server cluster."
value = module.consul_servers.instance_template_name
}
output "instance_template_url" {
description = "The URL of the Instance Template used by the Consul Server cluster."
value = module.consul_servers.instance_template_url
}