From 20d09a4ae6815739e8043f8be7894c0a9436450b Mon Sep 17 00:00:00 2001 From: Samori Gorse Date: Sun, 16 Jan 2022 20:31:24 +0100 Subject: [PATCH] Update example (#4041) The `simple_config_file` was confusing and doesn't work if you copy paste it. --- plugins/inventory/xen_orchestra.py | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/plugins/inventory/xen_orchestra.py b/plugins/inventory/xen_orchestra.py index 8a7d9e7354..cc2346a1aa 100644 --- a/plugins/inventory/xen_orchestra.py +++ b/plugins/inventory/xen_orchestra.py @@ -62,17 +62,16 @@ DOCUMENTATION = ''' EXAMPLES = ''' # file must be named xen_orchestra.yaml or xen_orchestra.yml -simple_config_file: - plugin: community.general.xen_orchestra - api_host: 192.168.1.255 - user: xo - password: xo_pwd - validate_certs: true - use_ssl: true - groups: - kube_nodes: "'kube_node' in tags" - compose: - ansible_port: 2222 +plugin: community.general.xen_orchestra +api_host: 192.168.1.255 +user: xo +password: xo_pwd +validate_certs: true +use_ssl: true +groups: + kube_nodes: "'kube_node' in tags" +compose: + ansible_port: 2222 '''