mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
refactor: Refactoring to match the rest of terraform-aws-modules (#1583)
This commit is contained in:
+2
-1
@@ -1,5 +1,6 @@
|
||||
resource "local_file" "kubeconfig" {
|
||||
count = var.write_kubeconfig && var.create_eks ? 1 : 0
|
||||
count = var.write_kubeconfig && var.create_eks ? 1 : 0
|
||||
|
||||
content = local.kubeconfig
|
||||
filename = substr(var.kubeconfig_output_path, -1, 1) == "/" ? "${var.kubeconfig_output_path}kubeconfig_${var.cluster_name}" : var.kubeconfig_output_path
|
||||
file_permission = var.kubeconfig_file_permission
|
||||
|
||||
Reference in New Issue
Block a user