Sha256: fb25917ffe98e5c207daeb15114f72ee2d7d99258307d1a9914de8acede5540a

Contents?: true

Size: 773 Bytes

Versions: 5

Compression:

Stored size: 773 Bytes

Contents

#
# Cookbook Name:: postgresql
# Resource:: user
#

actions :create, :update, :drop

default_action :create

attribute :name,               kind_of: String, name_attribute: true
attribute :superuser,          kind_of: [TrueClass, FalseClass], default: false
attribute :createdb,           kind_of: [TrueClass, FalseClass], default: false
attribute :createrole,         kind_of: [TrueClass, FalseClass], default: false
attribute :inherit,            kind_of: [TrueClass, FalseClass], default: true
attribute :replication,        kind_of: [TrueClass, FalseClass], default: false
attribute :login,              kind_of: [TrueClass, FalseClass], default: true
attribute :password,           kind_of: String
attribute :encrypted_password, kind_of: String

attr_accessor :exists

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
from-scratch-0.7.0 cookbooks/postgresql/resources/user.rb
from-scratch-0.6.0 cookbooks/postgresql/resources/user.rb
from-scratch-0.5.0 cookbooks/postgresql/resources/user.rb
from-scratch-0.3.0 cookbooks/postgresql/resources/user.rb
from-scratch-0.2.0 cookbooks/postgresql/resources/user.rb