-
Notifications
You must be signed in to change notification settings - Fork 2
/
outputs.tf
71 lines (54 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
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
output "fqdn" {
value = local.fqdn
description = "The FQDN to the W&B application"
}
output "address" {
value = module.app_lb.address
}
output "url" {
value = local.url
description = "The URL to the W&B application"
}
output "cluster_host" {
value = module.app_aks.cluster_host
}
output "cluster_client_certificate" {
value = module.app_aks.cluster_client_certificate
}
output "cluster_client_key" {
value = module.app_aks.cluster_client_key
}
output "cluster_ca_certificate" {
value = module.app_aks.cluster_ca_certificate
sensitive = true
}
output "oidc_issuer_url" {
value = module.app_aks.oidc_issuer_url
}
output "private_link_resource_id" {
value = module.app_lb.gateway_id
}
output "private_link_sub_resource_name" {
value = module.app_lb.frontend_ip_configuration_names
}
output "standardized_size" {
value = var.size
}
output "aks_min_node_count" {
value = local.kubernetes_min_node_per_az
}
output "aks_max_node_count" {
value = local.kubernetes_max_node_per_az
}
output "aks_node_instance_type" {
value = local.kubernetes_instance_type
}
output "database_instance_type" {
value = local.database_sku_name
}
output "client_id" {
value = module.identity.identity.client_id
}
output "tenant_id" {
value = module.identity.identity.tenant_id
}