From 43042682e839a0ddbb26be90461b797afbffc126 Mon Sep 17 00:00:00 2001 From: Chris Gavin Date: Mon, 4 Mar 2019 13:27:24 +0000 Subject: [PATCH] Fix an incorrect function call in a documentation example. (#53233) --- docs/docsite/rst/dev_guide/developing_inventory.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/dev_guide/developing_inventory.rst b/docs/docsite/rst/dev_guide/developing_inventory.rst index 3b62bbed9c2..980c12a5532 100644 --- a/docs/docsite/rst/dev_guide/developing_inventory.rst +++ b/docs/docsite/rst/dev_guide/developing_inventory.rst @@ -185,7 +185,7 @@ To facilitate this there are a few of helper functions used in the example below for colo in mydata: for server in mydata[colo]['servers']: self.inventory.add_host(server['name']) - self.inventory.set_variable('ansible_host', server['external_ip']) + self.inventory.set_variable(server['name'], 'ansible_host', server['external_ip']) The specifics will vary depending on API and structure returned. But one thing to keep in mind, if the inventory source or any other issue crops up you should ``raise AnsibleParserError`` to let Ansible know that the source was invalid or the process failed.