mirror of
https://github.com/ansible/awx.git
synced 2026-02-15 02:00:01 -03:30
fix default value bug
This commit is contained in:
@@ -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'),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user