summaryrefslogtreecommitdiffstats
path: root/awx_collection
diff options
context:
space:
mode:
authorWill Thames <wthames@skedulo.com>2023-10-11 21:39:51 +0200
committerGitHub <noreply@github.com>2023-10-11 21:39:51 +0200
commitdc34d0887a04b326f9285de25521a5e504b6faec (patch)
tree33a2807df6804ffe581b6cfc50721e3b5ee1b1f8 /awx_collection
parentee_reference.rst: refert to Builder's definition docs instead of duplicating ... (diff)
downloadawx-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.py3
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(),