Skip to content

Commit

Permalink
Increase aws_dms_replication_instance creation timeout (hashicorp#29905)
Browse files Browse the repository at this point in the history
* Increase aws_dms_replication_instance creation timeout

* add CHANGELOG entry

* update documentation

---------

Co-authored-by: Adrian Johnson <adrian.johnson@hashicorp.com>
  • Loading branch information
2 people authored and Adam Lewandowski committed Apr 14, 2023
1 parent 43df502 commit aae1ad0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/29905.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/aws_dms_replication_instance: Increase default timeout for `create`
```
2 changes: 1 addition & 1 deletion internal/service/dms/replication_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func ResourceReplicationInstance() *schema.Resource {
DeleteWithoutTimeout: resourceReplicationInstanceDelete,

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(30 * time.Minute),
Create: schema.DefaultTimeout(40 * time.Minute),
Update: schema.DefaultTimeout(30 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
},
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/dms_replication_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ In addition to all arguments above, the following attributes are exported:

[Configuration options](https://developer.hashicorp.com/terraform/language/resources/syntax#operation-timeouts):

- `create` - (Default `30m`)
- `create` - (Default `40m`)
- `update` - (Default `30m`)
- `delete` - (Default `30m`)

Expand Down

0 comments on commit aae1ad0

Please sign in to comment.