Skip to content

Commit

Permalink
Merge pull request #28363 from GlennChia/td-aws_networkmanager_core_n…
Browse files Browse the repository at this point in the history
…etwork-increase-default-timeout

td/aws_networkmanager_core_network-increase-default-timeout
  • Loading branch information
ewbankkit authored Dec 14, 2022
2 parents b4a9f93 + 85388ae commit b848146
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .changelog/28363.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/aws_networkmanager_core_network: Increase Create, Update, and Delete timeouts to 30 minutes
```
6 changes: 3 additions & 3 deletions internal/service/networkmanager/core_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ func ResourceCoreNetwork() *schema.Resource {
),

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(10 * time.Minute),
Update: schema.DefaultTimeout(10 * time.Minute),
Delete: schema.DefaultTimeout(10 * time.Minute),
Create: schema.DefaultTimeout(30 * time.Minute),
Update: schema.DefaultTimeout(30 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
},

Schema: map[string]*schema.Schema{
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/networkmanager_core_network.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ The following arguments are supported:

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

* `create` - (Default `10m`)
* `delete` - (Default `10m`)
* `update` - (Default `10m`)
* `create` - (Default `30m`)
* `delete` - (Default `30m`)
* `update` - (Default `30m`)

## Attributes Reference

Expand Down

0 comments on commit b848146

Please sign in to comment.