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

This commit is contained in:
Radek Simko 2017-05-11 13:04:53 +02:00 committed by GitHub
parent f21a96a654
commit 1b2055dfa5
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: 1 * time.Minute,
Timeout: 3 * time.Minute,
}
resp, err := stateConf.WaitForState()