Skip to content

Commit 905dfa6

Browse files
authored
feat: Added timeout block to aws_default_route_table resource (#701)
1 parent 75911a9 commit 905dfa6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

main.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,11 @@ resource "aws_default_route_table" "default" {
184184
}
185185
}
186186

187+
timeouts {
188+
create = "5m"
189+
update = "5m"
190+
}
191+
187192
tags = merge(
188193
{ "Name" = var.name },
189194
var.tags,

0 commit comments

Comments
 (0)