provider/aws: Increase timeout for creating security group (#14724)

This commit is contained in:
Radek Simko 2017-05-22 15:12:39 +02:00 committed by GitHub
parent f3d86dca83
commit b90ad412d5
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ func resourceAwsSecurityGroupCreate(d *schema.ResourceData, meta interface{}) er
Pending: []string{""},
Target: []string{"exists"},
Refresh: SGStateRefreshFunc(conn, d.Id()),
Timeout: 3 * time.Minute,
Timeout: 5 * time.Minute,
}
resp, err := stateConf.WaitForState()