mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-24 23:36:46 +00:00
This should make it easy to start a bunch of clusters (using the new Terraform provisioning method) on various providers.
12 lines
231 B
HCL
12 lines
231 B
HCL
output "kubeconfig" {
|
|
value = scaleway_k8s_cluster._.kubeconfig.0.config_file
|
|
}
|
|
|
|
output "cluster_id" {
|
|
value = scaleway_k8s_cluster._.id
|
|
}
|
|
|
|
output "has_metrics_server" {
|
|
value = sort([var.k8s_version, "1.22"])[0] == "1.22"
|
|
}
|