Add 'Terraform State' inventory source support for collection (#15258)

This commit is contained in:
Viktor Varga
2024-06-12 15:22:21 -04:00
committed by GitHub
parent bfd811f408
commit a7113549eb

View File

@@ -42,7 +42,7 @@ options:
source: source:
description: description:
- The source to use for this group. - 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 type: str
source_path: source_path:
description: 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 # 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_path=dict(),
source_vars=dict(type='dict'), source_vars=dict(type='dict'),
enabled_var=dict(), enabled_var=dict(),