diff options
author | Graham Mainwaring <graham@mhn.org> | 2021-04-02 02:47:30 +0200 |
---|---|---|
committer | Graham Mainwaring <graham@mhn.org> | 2021-04-02 02:47:30 +0200 |
commit | b3d1c7ff9f3138c60aa289fa321de855f079226e (patch) | |
tree | 37ebaa39ac77c8376f8278f85a318cf1216c2c51 /awx_collection | |
parent | Make sure changed is always set (diff) | |
download | awx-b3d1c7ff9f3138c60aa289fa321de855f079226e.tar.xz awx-b3d1c7ff9f3138c60aa289fa321de855f079226e.zip |
Add force parameter to argument_spec
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/plugins/modules/tower_license.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/awx_collection/plugins/modules/tower_license.py b/awx_collection/plugins/modules/tower_license.py index 9d3bd717f3..37ce8531ff 100644 --- a/awx_collection/plugins/modules/tower_license.py +++ b/awx_collection/plugins/modules/tower_license.py @@ -59,6 +59,7 @@ def main(): argument_spec=dict( manifest=dict(type='str', required=True), eula_accepted=dict(type='bool', required=True), + force=dict(type='bool', required=False), ), ) |