Fixed issues with naming that were causing problems

This commit is contained in:
Mark J. Horninger 2024-02-23 21:58:20 -05:00
parent cba3dd6d61
commit f76cfe186f
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ namespace: dominion_solutions
name: netbird
# The version of the collection. Must be compatible with semantic versioning
version: 0.1.0
version: 0.1.1
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md

View File

@ -26,7 +26,7 @@ options:
plugin:
description: Marks this as an instance of the 'netbird' plugin.
required: true
choices: ['netbird', 'dominion_solutions.netbird']
choices: ['netbird', 'dominion_solutions.netbird.netbird']
ip_style:
description: Populate hostvars with all information available from the Netbird API.
type: string
@ -71,7 +71,7 @@ options:
EXAMPLES = r"""
# This is an inventory that finds the All Group and creates groups for the connected and ssh_enabled peers.
---
plugin: dominion_solutions.netbird
plugin: dominion_solutions.netbird.netbird
api_key: << api_key >>
api_url: << api_url >>
netbird_groups:
@ -105,7 +105,7 @@ display = Display()
class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
NAME = "dominion_solutions.netbird"
NAME = "dominion_solutions.netbird.netbird"
_load_name = NAME
def _build_client(self, loader):