mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #6428 from risaacson/migrate_booleans_bool_postgresql_user
Bulk update of choices=BOOLEANS to type='bool'
This commit is contained in:
commit
0fd80f3f6f
1 changed files with 2 additions and 2 deletions
|
@ -443,9 +443,9 @@ def main():
|
||||||
priv=dict(default=None),
|
priv=dict(default=None),
|
||||||
db=dict(default=''),
|
db=dict(default=''),
|
||||||
port=dict(default='5432'),
|
port=dict(default='5432'),
|
||||||
fail_on_user=dict(type='bool', choices=BOOLEANS, default='yes'),
|
fail_on_user=dict(type='bool', default='yes'),
|
||||||
role_attr_flags=dict(default=''),
|
role_attr_flags=dict(default=''),
|
||||||
encrypted=dict(type='bool', choices=BOOLEANS, default='no'),
|
encrypted=dict(type='bool', default='no'),
|
||||||
expires=dict(default=None)
|
expires=dict(default=None)
|
||||||
),
|
),
|
||||||
supports_check_mode = True
|
supports_check_mode = True
|
||||||
|
|
Loading…
Reference in a new issue