mirror of
https://github.com/vcscsvcscs/OCI-Kubernetes-cluster-with-traefik.git
synced 2025-08-12 13:59:09 +02:00
12 lines
344 B
HCL
12 lines
344 B
HCL
output "cluster_ocid" {
|
|
value = oci_containerengine_cluster.k8s_cluster.id
|
|
}
|
|
|
|
output "public_endpoint" {
|
|
value = one(oci_containerengine_cluster.k8s_cluster.endpoints)
|
|
}
|
|
|
|
resource "local_file" "oke_kubeconfig" {
|
|
content = data.oci_containerengine_cluster_kube_config.cluster_kube_config.content
|
|
filename = "${path.module}/kubeconfig"
|
|
} |