New release: now supporting TF 0.12!! (#399)

* New release: now supporting TF 0.12

* updating precommit hook version
This commit is contained in:
Max Williams
2019-06-19 17:27:25 +02:00
committed by GitHub
parent da2c78b8ba
commit 9c3d222bd5
8 changed files with 69 additions and 69 deletions

View File

@@ -1,8 +1,7 @@
resource "aws_cloudwatch_log_group" "this" {
count = length(var.cluster_enabled_log_types) > 0 ? 1 : 0
name = "/aws/eks/${var.cluster_name}/cluster"
retention_in_days = var.cluster_log_retention_in_days
count = length(var.cluster_enabled_log_types) > 0 ? 1 : 0
}
resource "aws_eks_cluster" "this" {
@@ -86,4 +85,3 @@ resource "aws_iam_role_policy_attachment" "cluster_AmazonEKSServicePolicy" {
policy_arn = "arn:aws:iam::aws:policy/AmazonEKSServicePolicy"
role = aws_iam_role.cluster[0].name
}