diff options
author | Will Thames <wthames@skedulo.com> | 2023-10-11 21:39:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-11 21:39:51 +0200 |
commit | dc34d0887a04b326f9285de25521a5e504b6faec (patch) | |
tree | 33a2807df6804ffe581b6cfc50721e3b5ee1b1f8 /awx_collection | |
parent | ee_reference.rst: refert to Builder's definition docs instead of duplicating ... (diff) | |
download | awx-dc34d0887a04b326f9285de25521a5e504b6faec.tar.xz awx-dc34d0887a04b326f9285de25521a5e504b6faec.zip |
Execution environment image should not be required (#14488)
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/plugins/modules/execution_environment.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/awx_collection/plugins/modules/execution_environment.py b/awx_collection/plugins/modules/execution_environment.py index 431d7de531..38c5ecb516 100644 --- a/awx_collection/plugins/modules/execution_environment.py +++ b/awx_collection/plugins/modules/execution_environment.py @@ -33,7 +33,6 @@ options: image: description: - The fully qualified url of the container image. - required: True type: str description: description: @@ -79,7 +78,7 @@ def main(): argument_spec = dict( name=dict(required=True), new_name=dict(), - image=dict(required=True), + image=dict(), description=dict(), organization=dict(), credential=dict(), |