1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

Update changelog

Fix cluster count
This commit is contained in:
syst0m
2019-10-31 16:51:40 +00:00
committed by Tomislav Tomasic
parent c89da3772e
commit 75248e97df
7 changed files with 34 additions and 34 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
resource "local_file" "config_map_aws_auth" {
count = var.write_aws_auth_config && local.enabled ? 1 : 0
count = var.write_aws_auth_config && var.enabled ? 1 : 0
content = data.template_file.config_map_aws_auth.rendered
filename = "${var.config_output_path}config-map-aws-auth_${var.cluster_name}.yaml"
}
resource "null_resource" "update_config_map_aws_auth" {
count = var.manage_aws_auth && local.enabled ? 1 : 0
count = var.manage_aws_auth && var.enabled ? 1 : 0
depends_on = [aws_eks_cluster.this]
provisioner "local-exec" {