mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-23 17:23:00 +00:00
This should make it easy to start a bunch of clusters (using the new Terraform provisioning method) on various providers.
12 lines
188 B
HCL
12 lines
188 B
HCL
output "kubeconfig" {
|
|
value = base64decode(linode_lke_cluster._.kubeconfig)
|
|
}
|
|
|
|
output "cluster_id" {
|
|
value = linode_lke_cluster._.id
|
|
}
|
|
|
|
output "has_metrics_server" {
|
|
value = false
|
|
}
|