Skip to content

Commit

Permalink
The ecryption_config input for the aws_eks_cluster resource requires …
Browse files Browse the repository at this point in the history
…a list of string for the resources input and not just a string
  • Loading branch information
OlamideOl1 committed Oct 24, 2023
1 parent 351b8e1 commit 8090e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/cluster/modules/eks-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource "aws_eks_cluster" "this" {
provider {
key_arn = aws_kms_key.eks_key.arn
}
resources = "secrets"
resources = ["secrets"]
}

depends_on = [
Expand Down

0 comments on commit 8090e82

Please sign in to comment.