Skip to content

Commit 98667d1

Browse files
committed
update error message
1 parent b850f8b commit 98667d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builtin/providers/heroku/resource_heroku_app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ func resourceHerokuApp() *schema.Resource {
125125
func switchHerokuAppCreate(d *schema.ResourceData, meta interface{}) error {
126126
orgCount := d.Get("organization.#").(int)
127127
if orgCount > 1 {
128-
return fmt.Errorf("Error Creating Heroku App: Only 1 Organization")
128+
return fmt.Errorf("Error Creating Heroku App: Only 1 Heroku Organization is permitted")
129129
}
130130

131131
if _, ok := d.GetOk("organization.0.name"); ok {

0 commit comments

Comments
 (0)