feat: Add ability to define custom timeout for fargate profiles (#1614)

This commit is contained in:
Ivan Dechovski
2021-11-03 10:44:26 +01:00
committed by GitHub
parent 6959b9bae3
commit b7539dc220
4 changed files with 20 additions and 0 deletions

View File

@@ -114,6 +114,11 @@ module "eks" {
tags = {
Owner = "test"
}
timeouts = {
create = "20m"
delete = "20m"
}
}
}

View File

@@ -68,6 +68,11 @@ module "eks" {
tags = {
Owner = "default"
}
timeouts = {
create = "20m"
delete = "20m"
}
}
secondary = {
@@ -154,6 +159,10 @@ module "fargate_profile_existing_cluster" {
Owner = "profile2"
submodule = "true"
}
timeouts = {
delete = "20m"
}
}
}