Skip to content

Commit

Permalink
Merge pull request #17596 from mcalhoun/chore/17577-fix-fms-admin-acc…
Browse files Browse the repository at this point in the history
…ount-timeout
  • Loading branch information
gdavison committed Mar 25, 2021
2 parents 37b0efc + 1b79641 commit 3b18f11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/17596.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/aws_fms_admin_account: Extend creation timeout to 10 minutes
```
2 changes: 1 addition & 1 deletion aws/resource_aws_fms_admin_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func resourceAwsFmsAdminAccountCreate(d *schema.ResourceData, meta interface{})
stateConf := &resource.StateChangeConf{
Target: []string{accountID},
Refresh: associateFmsAdminAccountRefreshFunc(conn, accountID),
Timeout: 1 * time.Minute,
Timeout: 10 * time.Minute,
Delay: 10 * time.Second,
}

Expand Down

0 comments on commit 3b18f11

Please sign in to comment.