AWX/Inventory Description: Difference between revisions
< AWX
(Created page with "== _awx_description == Add support for importing host/group descriptions https://github.com/ansible/awx/pull/6265 Adds support for custom scripts importing the Host and Group description in AWX by setting a var of _awx_description. This var gets removed and does not get added to the host or group variables in inventory. Note: doesn't seem to work??") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
Adds support for custom scripts importing the Host and Group description in AWX by setting a var of _awx_description. This var gets removed and does not get added to the host or group variables in inventory. | Adds support for custom scripts importing the Host and Group description in AWX by setting a var of _awx_description. This var gets removed and does not get added to the host or group variables in inventory. | ||
Referenced in https://github.com/ansible/awx/issues/6966 | |||
Note: doesn't seem to work?? | Note: doesn't seem to work?? | ||
This worked: | |||
inventory.ini: | |||
<pre> | |||
[somegroupname] | |||
MYNODE.example.com _awx_description="some description" name="some name" email="someemail@example.com" | |||
</pre> |
Latest revision as of 01:48, 11 November 2024
_awx_description
Add support for importing host/group descriptions https://github.com/ansible/awx/pull/6265
Adds support for custom scripts importing the Host and Group description in AWX by setting a var of _awx_description. This var gets removed and does not get added to the host or group variables in inventory.
Referenced in https://github.com/ansible/awx/issues/6966
Note: doesn't seem to work??
This worked:
inventory.ini:
[somegroupname] MYNODE.example.com _awx_description="some description" name="some name" email="someemail@example.com"