-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutputs.tf
More file actions
54 lines (44 loc) · 1.39 KB
/
outputs.tf
File metadata and controls
54 lines (44 loc) · 1.39 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
output "cluster_endpoint" {
description = "Kubernetes API endpoint"
value = module.cluster.cluster_endpoint
}
output "kubeconfig_path" {
description = "Path to kubeconfig file"
value = module.cluster.kubeconfig_path
}
output "talosconfig_path" {
description = "Path to talosconfig file"
value = "${path.module}/talosconfig"
}
output "metallb_pool" {
description = "MetalLB IP pool name"
value = module.metallb.pool_name
}
output "ingress_namespace" {
description = "Ingress-NGINX namespace"
value = module.ingress.namespace
}
output "grafana_url" {
description = "Grafana URL"
value = "http://grafana.local (add to /etc/hosts: ${var.ingress_ip} grafana.local)"
}
output "portainer_url" {
description = "Portainer agent URL (connect from Portainer CE/BE)"
value = module.portainer.connection_url
}
output "longhorn_ui" {
description = "Longhorn UI access command"
value = "kubectl port-forward -n longhorn-system svc/longhorn-frontend 8080:80"
}
output "talos_image_url" {
description = "Talos image URL used for flashing"
value = module.talos_image.image_url
}
output "talos_installer_url" {
description = "Talos installer URL for upgrades"
value = module.talos_image.installer_url
}
output "talos_extensions" {
description = "Extensions included in the Talos image"
value = module.talos_image.extensions
}