update error message

This commit is contained in:
Clint Shryock 2014-10-12 13:06:08 -05:00
parent b850f8bc65
commit 98667d1b12
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ func resourceHerokuApp() *schema.Resource {
func switchHerokuAppCreate(d *schema.ResourceData, meta interface{}) error {
orgCount := d.Get("organization.#").(int)
if orgCount > 1 {
return fmt.Errorf("Error Creating Heroku App: Only 1 Organization")
return fmt.Errorf("Error Creating Heroku App: Only 1 Heroku Organization is permitted")
}
if _, ok := d.GetOk("organization.0.name"); ok {