mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 06:30:19 -07:00
Fix argspec for webfaction modules
* Fixing webfaction_domain "subdomains" argument parsing - must coerce to list, not string * Fixing webfaction_db and webfaction_app "machine" argument default
This commit is contained in:
parent
d30554bc90
commit
a97d8dff5a
3 changed files with 3 additions and 5 deletions
|
@ -93,7 +93,7 @@ def main():
|
|||
argument_spec=dict(
|
||||
name=dict(required=True),
|
||||
state=dict(required=False, choices=['present', 'absent'], default='present'),
|
||||
subdomains=dict(required=False, default=[]),
|
||||
subdomains=dict(required=False, default=[], type='list'),
|
||||
login_name=dict(required=True),
|
||||
login_password=dict(required=True, no_log=True),
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue