Fix boolean typo in documentation
In puppet you need to use 'true' not 'True'. In newer versions of puppet this actually causes failures. So this change fixes the documentation to use the correct form of true. Change-Id: Id777c8528f2056725be58f7b0438fe6deedc7e21
This commit is contained in:
parent
527ada596c
commit
348a7bf9ac
@ -74,11 +74,11 @@ Keystone ships with a collection of native types that can be used to interact wi
|
||||
```puppet
|
||||
keystone_tenant { 'openstack':
|
||||
ensure => present,
|
||||
enabled => True,
|
||||
enabled => true,
|
||||
}
|
||||
keystone_user { 'openstack':
|
||||
ensure => present,
|
||||
enabled => True,
|
||||
enabled => true,
|
||||
}
|
||||
keystone_role { 'admin':
|
||||
ensure => present,
|
||||
|
Loading…
Reference in New Issue
Block a user