Skip to content

Commit

Permalink
feat: Added timeout block to aws_default_route_table resource (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
msharma24 authored Oct 15, 2021
1 parent 75911a9 commit 905dfa6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@ resource "aws_default_route_table" "default" {
}
}

timeouts {
create = "5m"
update = "5m"
}

tags = merge(
{ "Name" = var.name },
var.tags,
Expand Down

0 comments on commit 905dfa6

Please sign in to comment.