Merge pull request #13326 from marccardinal/patch-1

Fixed typo
This commit is contained in:
Jake Champlin 2017-04-04 09:32:25 -04:00 committed by GitHub
commit eb249693c9
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ func resourceAwsElasticBeanstalkEnvironmentCreate(d *schema.ResourceData, meta i
if cnamePrefix != "" {
if tier != "WebServer" {
return fmt.Errorf("Cannont set cname_prefix for tier: %s.", tier)
return fmt.Errorf("Cannot set cname_prefix for tier: %s.", tier)
}
createOpts.CNAMEPrefix = aws.String(cnamePrefix)
}