mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-24 01:32:51 +00:00
This should make it easy to start a bunch of clusters (using the new Terraform provisioning method) on various providers.
16 lines
310 B
HCL
16 lines
310 B
HCL
data "oci_containerengine_cluster_kube_config" "_" {
|
|
cluster_id = oci_containerengine_cluster._.id
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
value = data.oci_containerengine_cluster_kube_config._.content
|
|
}
|
|
|
|
output "cluster_id" {
|
|
value = oci_containerengine_cluster._.id
|
|
}
|
|
|
|
output "has_metrics_server" {
|
|
value = false
|
|
}
|