Skip to content

Commit da53b5c

Browse files
changing timeout (#736)
* change timeout * Update README.md Co-authored-by: Max Williams <[email protected]>
1 parent dda2449 commit da53b5c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
1010
## [[v8.?.?](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v8.2.0...HEAD)] - 2020-xx-xx]
1111
- Revert #631. Add back manage security group flags. (by @ryanooi)
1212

13+
- changed timeout for creating EKS (by @confiq)
1314
- Added instructions for how to add Windows nodes (by @ivanguravel)
1415
- [CI] Switch `Validate` github action to use env vars (by @max-rocket-internet)
1516
- [CI] Bump pre-commit-terraform version (by @barryib)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
163163
|------|-------------|------|---------|:-----:|
164164
| attach\_worker\_cni\_policy | Whether to attach the Amazon managed `AmazonEKS_CNI_Policy` IAM policy to the default worker IAM role. WARNING: If set `false` the permissions must be assigned to the `aws-node` DaemonSet pods via another method or nodes will not be able to join the cluster. | `bool` | `true` | no |
165165
| cluster\_create\_security\_group | Whether to create a security group for the cluster or attach the cluster to `cluster_security_group_id`. | `bool` | `true` | no |
166-
| cluster\_create\_timeout | Timeout value when creating the EKS cluster. | `string` | `"15m"` | no |
166+
| cluster\_create\_timeout | Timeout value when creating the EKS cluster. | `string` | `"30m"` | no |
167167
| cluster\_delete\_timeout | Timeout value when deleting the EKS cluster. | `string` | `"15m"` | no |
168168
| cluster\_enabled\_log\_types | A list of the desired control plane logging to enable. For more information, see Amazon EKS Control Plane Logging documentation (https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html) | `list(string)` | `[]` | no |
169169
| cluster\_endpoint\_private\_access | Indicates whether or not the Amazon EKS private API server endpoint is enabled. | `bool` | `false` | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ variable "kubeconfig_name" {
189189
variable "cluster_create_timeout" {
190190
description = "Timeout value when creating the EKS cluster."
191191
type = string
192-
default = "15m"
192+
default = "30m"
193193
}
194194

195195
variable "cluster_delete_timeout" {

0 commit comments

Comments
 (0)