fix: wrong was eks timeout content (tf doc is wrong) (#508)

This commit is contained in:
Pierre Mavro
2021-11-25 11:12:22 +01:00
committed by GitHub
parent 72c7c1d491
commit 172b1daeb7
2 changed files with 4 additions and 3 deletions

View File

@@ -55,8 +55,9 @@ resource "aws_eks_cluster" "eks_cluster" {
# grow this value to reduce random AWS API timeouts
timeouts {
create = "60 minutes"
update = "90 minutes"
create = "60m"
update = "90m"
delete = "30m"
}
depends_on = [

View File

@@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.59.0"
version = "~> 3.66.0"
}
external = {
source = "hashicorp/external"