From a941963ca24a673162090acf312a64635ffa8064 Mon Sep 17 00:00:00 2001 From: clint shryock Date: Wed, 13 Jul 2016 15:39:53 -0600 Subject: [PATCH] match the system limit --- .../providers/aws/resource_aws_elastic_beanstalk_environment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_elastic_beanstalk_environment.go b/builtin/providers/aws/resource_aws_elastic_beanstalk_environment.go index c181af3fa4..35815f41f7 100644 --- a/builtin/providers/aws/resource_aws_elastic_beanstalk_environment.go +++ b/builtin/providers/aws/resource_aws_elastic_beanstalk_environment.go @@ -146,7 +146,7 @@ func resourceAwsElasticBeanstalkEnvironment() *schema.Resource { } if duration < 10*time.Second || duration > 60*time.Second { errors = append(errors, fmt.Errorf( - "%q must be between 10s and 60s", k)) + "%q must be between 10s and 180s", k)) } return },