summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrev3r4nt <rev3r4nt@gmail.com>2025-01-13 12:30:16 +0100
committerGitHub <noreply@github.com>2025-01-13 12:30:16 +0100
commit6228fe9b6669995ac928dc5a2798fc8c48b6cfdd (patch)
treedce24f19d80ca21deab36b43074d4fec7e62e944
parentFix dependency upgrades (#15740) (diff)
downloadawx-6228fe9b6669995ac928dc5a2798fc8c48b6cfdd.tar.xz
awx-6228fe9b6669995ac928dc5a2798fc8c48b6cfdd.zip
Add input_inventories to ordered_associations (#15710)
-rw-r--r--awx_collection/plugins/module_utils/controller_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/awx_collection/plugins/module_utils/controller_api.py b/awx_collection/plugins/module_utils/controller_api.py
index 2e9cdd126c..8ecb3d2ab7 100644
--- a/awx_collection/plugins/module_utils/controller_api.py
+++ b/awx_collection/plugins/module_utils/controller_api.py
@@ -58,7 +58,7 @@ class ControllerModule(AnsibleModule):
controller_config_file=dict(type='path', aliases=['tower_config_file'], required=False, default=None),
)
# Associations of these types are ordered and have special consideration in the modified associations function
- ordered_associations = ['instance_groups', 'galaxy_credentials']
+ ordered_associations = ['instance_groups', 'galaxy_credentials', 'input_inventories']
short_params = {
'host': 'controller_host',
'username': 'controller_username',