mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-16 08:37:18 +01:00
6 lines
215 B
HCL
6 lines
215 B
HCL
resource "local_file" "kubeconfig" {
|
|
content = "${data.template_file.kubeconfig.rendered}"
|
|
filename = "${var.config_output_path}/kubeconfig_${var.cluster_name}"
|
|
count = "${var.write_kubeconfig ? 1 : 0}"
|
|
}
|