fix default value bug

This commit is contained in:
sean-m-sullivan
2021-02-14 17:17:04 -06:00
parent 6d08c11506
commit 5548f7e91d
4 changed files with 14 additions and 14 deletions

View File

@@ -76,10 +76,10 @@ from ..module_utils.tower_api import TowerAPIModule
def main():
# Any additional arguments that are not fields of the item can be added here
argument_spec = dict(
description=dict(default=''),
description=dict(),
input_field_name=dict(required=True),
target_credential=dict(required=True),
source_credential=dict(default=''),
source_credential=dict(),
metadata=dict(type="dict"),
state=dict(choices=['present', 'absent'], default='present'),
)