provider/aws: Increase Beanstalk 'ready' timeout (#13359)

This commit is contained in:
Radek Simko 2017-04-05 13:11:55 +01:00 committed by GitHub
parent 0bab530de2
commit cd79471ecb
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ func resourceAwsElasticBeanstalkEnvironment() *schema.Resource {
"wait_for_ready_timeout": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Default: "10m",
Default: "20m",
ValidateFunc: func(v interface{}, k string) (ws []string, errors []error) {
value := v.(string)
duration, err := time.ParseDuration(value)