mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
This commit is contained in:
parent
32c7f1eae7
commit
c385c6746a
1 changed files with 9 additions and 1 deletions
|
@ -150,9 +150,14 @@ api_response:
|
|||
phase: "Active"
|
||||
'''
|
||||
|
||||
import yaml
|
||||
import base64
|
||||
|
||||
try:
|
||||
import yaml
|
||||
has_lib_yaml = True
|
||||
except ImportError:
|
||||
has_lib_yaml = False
|
||||
|
||||
############################################################################
|
||||
############################################################################
|
||||
# For API coverage, this Anislbe module provides capability to operate on
|
||||
|
@ -325,6 +330,9 @@ def main():
|
|||
required_one_of = (('file_reference', 'inline_data'),),
|
||||
)
|
||||
|
||||
if not has_lib_yaml:
|
||||
module.fail_json(msg="missing python library: yaml")
|
||||
|
||||
decode_cert_data(module)
|
||||
|
||||
api_endpoint = module.params.get('api_endpoint')
|
||||
|
|
Loading…
Reference in a new issue