From 905102ec1faa788425172054f85b50452b8b6340 Mon Sep 17 00:00:00 2001 From: vvarga Date: Thu, 6 Jun 2024 09:36:14 -0400 Subject: [PATCH] collection: 'Terraform State' inventory source support (#15252) --- awx_collection/plugins/modules/inventory_source.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx_collection/plugins/modules/inventory_source.py b/awx_collection/plugins/modules/inventory_source.py index 5f6c1781b60f..216ebce3d8aa 100644 --- a/awx_collection/plugins/modules/inventory_source.py +++ b/awx_collection/plugins/modules/inventory_source.py @@ -42,7 +42,7 @@ source: description: - The source to use for this group. - choices: [ "scm", "ec2", "gce", "azure_rm", "vmware", "satellite6", "openstack", "rhv", "controller", "insights" ] + choices: [ "scm", "ec2", "gce", "azure_rm", "vmware", "satellite6", "openstack", "rhv", "controller", "insights", "terraform" ] type: str source_path: description: @@ -170,7 +170,7 @@ def main(): # # How do we handle manual and file? The controller does not seem to be able to activate them # - source=dict(choices=["scm", "ec2", "gce", "azure_rm", "vmware", "satellite6", "openstack", "rhv", "controller", "insights"]), + source=dict(choices=["scm", "ec2", "gce", "azure_rm", "vmware", "satellite6", "openstack", "rhv", "controller", "insights", "terraform"]), source_path=dict(), source_vars=dict(type='dict'), enabled_var=dict(),