mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-19 16:21:09 +01:00
Added timeout configs and variables to aws_eks_cluster resource (#149)
* Added timeout configs and variables * Updated CHANGELOG and README * Added timeout configs and variables * Updated CHANGELOG and README * Changed variable names for consistency * Updated README.md * Did terraform fmt
This commit is contained in:
committed by
Max Williams
parent
77a7690b1c
commit
0ee9d633d3
@@ -8,6 +8,11 @@ resource "aws_eks_cluster" "this" {
|
||||
subnet_ids = ["${var.subnets}"]
|
||||
}
|
||||
|
||||
timeouts {
|
||||
create = "${var.cluster_create_timeout}"
|
||||
delete = "${var.cluster_delete_timeout}"
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
"aws_iam_role_policy_attachment.cluster_AmazonEKSClusterPolicy",
|
||||
"aws_iam_role_policy_attachment.cluster_AmazonEKSServicePolicy",
|
||||
|
||||
Reference in New Issue
Block a user