fix: grow default AWS timeout to reduce random AWS issues (#507)

This commit is contained in:
Pierre Mavro
2021-11-25 10:18:17 +01:00
committed by GitHub
parent 682da7eb9b
commit 72c7c1d491
2 changed files with 27 additions and 0 deletions

View File

@@ -53,6 +53,12 @@ resource "aws_eks_cluster" "eks_cluster" {
tags = local.tags_eks
# grow this value to reduce random AWS API timeouts
timeouts {
create = "60 minutes"
update = "90 minutes"
}
depends_on = [
aws_iam_role_policy_attachment.eks_cluster_AmazonEKSClusterPolicy,
aws_iam_role_policy_attachment.eks_cluster_AmazonEKSServicePolicy,