diff --git a/.changelog/17596.txt b/.changelog/17596.txt new file mode 100644 index 00000000000..7847b72d61d --- /dev/null +++ b/.changelog/17596.txt @@ -0,0 +1,3 @@ +```release-note:enhancement +resource/aws_fms_admin_account: Extend creation timeout to 10 minutes +``` diff --git a/aws/resource_aws_fms_admin_account.go b/aws/resource_aws_fms_admin_account.go index 3e126f6d824..64fadfdc754 100644 --- a/aws/resource_aws_fms_admin_account.go +++ b/aws/resource_aws_fms_admin_account.go @@ -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, }