Change the default for `inherit` from `false` to `true` to match PostgreSQL.

This commit is contained in:
Sean Chittenden 2016-12-12 01:11:07 -08:00
parent b576a3eda1
commit e9dc92c18d
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16
2 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@ package postgresql
import (
"database/sql"
"errors"
"fmt"
"log"
"strconv"
"strings"
"github.com/hashicorp/errwrap"
@ -99,7 +99,7 @@ func resourcePostgreSQLRole() *schema.Resource {
roleInheritAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Default: true,
Description: `Determine whether a role "inherits" the privileges of roles it is a member of`,
},
roleLoginAttr: {

View File

@ -47,7 +47,7 @@ resource "postgresql_role" "my_replication_role" {
is `false`.
* `inherit` - (Optional) Defines whether a role "inherits" the privileges of
roles it is a member of. Default value is `false`.
roles it is a member of. Default value is `true`.
* `login` - (Optional) Defines whether role is allowed to log in. Roles without
this attribute are useful for managing database privileges, but are not users