Skip to content

Commit

Permalink
set default timeouts of postgres rs to 15 mins
Browse files Browse the repository at this point in the history
  • Loading branch information
nvthongswansea committed Apr 15, 2021
1 parent fe72242 commit 2a1472c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gridscale/resource_gridscale_postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ func resourceGridscalePostgreSQL() *schema.Resource {
},
},
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(30 * time.Minute),
Update: schema.DefaultTimeout(30 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
Create: schema.DefaultTimeout(15 * time.Minute),
Update: schema.DefaultTimeout(15 * time.Minute),
Delete: schema.DefaultTimeout(15 * time.Minute),
},
}
}
Expand Down

0 comments on commit 2a1472c

Please sign in to comment.