10 lines
185 B
Terraform
10 lines
185 B
Terraform
|
|
output "talosconfig" {
|
||
|
|
value = module.talos-bootstrap.talosconfig
|
||
|
|
sensitive = true
|
||
|
|
}
|
||
|
|
|
||
|
|
output "kubeconfig" {
|
||
|
|
value = module.talos-bootstrap.kubeconfig
|
||
|
|
sensitive = true
|
||
|
|
}
|