-
Notifications
You must be signed in to change notification settings - Fork 6
/
outputs.tf
107 lines (90 loc) · 2.93 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
output "address" {
value = module.app_lb.address_operator
}
output "bucket_name" {
value = local.bucket
description = "Name of google bucket."
}
output "bucket_path" {
value = local.bucket_path
description = "path of where to store data for the instance-level bucket"
}
output "bucket_queue_name" {
value = local.bucket_queue
description = "Pubsub queue created for google bucket file upload events."
}
output "cluster_ca_certificate" {
value = module.app_gke.cluster_ca_certificate
sensitive = true
description = "Certificate of the kubernetes (GKE) cluster."
}
output "cluster_client_certificate" {
sensitive = true
value = module.app_gke.cluster_client_certificate
}
output "cluster_client_key" {
sensitive = true
value = module.app_gke.cluster_client_key
}
output "cluster_endpoint" {
value = module.app_gke.cluster_endpoint
description = "Endpoint of the kubernetes (GKE) cluster."
}
output "cluster_id" {
value = module.app_gke.cluster_id
description = "ID of the kubernetes (GKE) cluster."
}
output "cluster_name" {
value = module.app_gke.cluster_name
}
output "cluster_node_pool" {
value = module.app_gke.node_pool
description = "Default node pool where Weights & Biases should be deployed into."
}
output "cluster_self_link" {
value = module.app_gke.cluster_self_link
description = "Self link of the kubernetes (GKE) cluster."
}
output "database_connection_string" {
value = module.database.connection_string
sensitive = true
description = "Full database connection string. You must be in the VPC to access the database."
}
output "fqdn" {
value = local.fqdn
description = "The FQDN to the W&B application"
}
output "service_account" {
value = module.service_accounts.service_account
description = "Weights & Biases service account used to manage resources."
}
output "url" {
value = local.url
description = "The URL to the W&B application"
}
output "standardized_size" {
value = var.size
}
output "gke_node_count" {
value = local.min_node_count
}
output "gke_max_node_count" {
value = local.max_node_count
}
output "gke_node_instance_type" {
value = local.gke_machine_type
}
output "database_instance_type" {
value = local.database_machine_type
}
output "private_attachement_id" {
value = var.create_private_link ? module.private_link[0].private_attachement_id : null
}
output "sa_account_email" {
description = "This output provides the email address of the service account created for workload identity, if workload identity is enabled. Otherwise, it returns null"
value = var.create_workload_identity == true ? module.service_accounts.sa_account_role : null
}
output "clickhouse_private_endpoint_id" {
description = "ClickHouse Private endpoint Endpoint ID to secure access inside VPC"
value = var.clickhouse_private_endpoint_service_name != "" ? module.clickhouse[0].psc_connection_id : null
}