Skip to content

Commit

Permalink
Add 'Terraform State' inventory source support for collection (#15258)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvarga007 committed Jun 12, 2024
1 parent bfd811f commit a711354
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions awx_collection/plugins/modules/inventory_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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(),
Expand Down

0 comments on commit a711354

Please sign in to comment.