mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Updating argument_spec for type='list' options by elements value. (#48485)
This commit is contained in:
parent
7287d396e2
commit
3a9eadb22f
5 changed files with 14 additions and 13 deletions
|
@ -281,8 +281,8 @@ def main():
|
|||
module = AnsibleModule(
|
||||
argument_spec=dict(
|
||||
input_chain=dict(required=True, type='str'),
|
||||
root_certificates=dict(required=True, type='list'),
|
||||
intermediate_certificates=dict(required=False, type='list', default=[]),
|
||||
root_certificates=dict(required=True, type='list', elements='path'),
|
||||
intermediate_certificates=dict(required=False, type='list', elements='path', default=[]),
|
||||
),
|
||||
supports_check_mode=True,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue