provider/heroku: fix typo in organization struct

"personal", not "private"
This commit is contained in:
Paul Hinze 2016-01-08 08:20:19 -06:00
parent 764dad06ae
commit 7cd955e3a1
1 changed files with 3 additions and 3 deletions

View File

@ -320,9 +320,9 @@ func resourceHerokuAppRead(d *schema.ResourceData, meta interface{}) error {
d.Set("all_config_vars", app.Vars)
if organizationApp {
orgDetails := map[string]interface{}{
"name": app.App.OrganizationName,
"locked": app.App.Locked,
"private": false,
"name": app.App.OrganizationName,
"locked": app.App.Locked,
"personal": false,
}
err := d.Set("organization", []interface{}{orgDetails})
if err != nil {