Skip to content

Commit

Permalink
add entry points for supported inventory sources
Browse files Browse the repository at this point in the history
also fix inventory name to match class
  • Loading branch information
jessicamack committed Nov 22, 2024
1 parent 316e9b9 commit 28e4036
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ thycotic_tss = "awx_plugins.credentials.tss:tss_plugin"
aws_secretsmanager_credential = "awx_plugins.credentials.aws_secretsmanager:aws_secretmanager_plugin"

[project.entry-points."awx_plugins.inventory"] # new entry points group name
azure-rm = "awx_plugins.inventory.plugins:azure_rm"
azure_rm = "awx_plugins.inventory.plugins:azure_rm"
ec2 = "awx_plugins.inventory.plugins:ec2"
gce = "awx_plugins.inventory.plugins:gce"
vmware = "awx_plugins.inventory.plugins:vmware"
Expand All @@ -89,6 +89,12 @@ insights = "awx_plugins.inventory.plugins:insights"
openshift_virtualization = "awx_plugins.inventory.plugins:openshift_virtualization"
constructed = "awx_plugins.inventory.plugins:constructed"

[project.entry-points."awx_plugins.inventory.supported"] # new entry points group name
satellite6 = "awx_plugins.inventory.plugins:satellite6_supported"
controller = "awx_plugins.inventory.plugins:controller_supported"
insights = "awx_plugins.inventory.plugins:insights_supported"
openshift_virtualization = "awx_plugins.inventory.plugins:openshift_virtualization_supported"

[project.license]
file = "LICENSE"

Expand Down

0 comments on commit 28e4036

Please sign in to comment.