mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-08-18 19:47:52 +00:00
This is a new provisioning mechanism. Right now, it can provision clusters on: - Digital Ocean - Linode - Oracle Cloud - Scaleway Others should be relatively straightforward to add. Check the README in the prepare-tf subdirectory for details.
8 lines
165 B
Terraform
8 lines
165 B
Terraform
output "kubeconfig" {
|
|
value = digitalocean_kubernetes_cluster._.kube_config.0.raw_config
|
|
}
|
|
|
|
output "cluster_id" {
|
|
value = digitalocean_kubernetes_cluster._.id
|
|
}
|