From dc34d0887a04b326f9285de25521a5e504b6faec Mon Sep 17 00:00:00 2001 From: Will Thames Date: Thu, 12 Oct 2023 05:39:51 +1000 Subject: [PATCH] Execution environment image should not be required (#14488) --- awx_collection/plugins/modules/execution_environment.py | 3 +-- 1 file changed, 1 insertion(+), 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(),