From 3b64bff7a5d5a61023f8371b367c4b0509dc5705 Mon Sep 17 00:00:00 2001 From: bverschueren Date: Tue, 7 Feb 2017 19:54:49 +0100 Subject: [PATCH] fix missing ident in provider dict assignment (#21089) Thanks @bverschueren! --- docs/docsite/rst/intro_networking.rst | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/docsite/rst/intro_networking.rst b/docs/docsite/rst/intro_networking.rst index e480d7f36b1..c5948094039 100644 --- a/docs/docsite/rst/intro_networking.rst +++ b/docs/docsite/rst/intro_networking.rst @@ -69,10 +69,10 @@ The following two config modules are essentially identical (using nxos_config) a --- vars: cli: - host: "{{ inventory_hostname }}" - username: "{{ ansible_ssh_user }}" - password: "{{ ansible_ssh_pass }} " - transport: cli + host: "{{ inventory_hostname }}" + username: "{{ ansible_ssh_user }}" + password: "{{ ansible_ssh_pass }} " + transport: cli nxos_config: @@ -84,10 +84,10 @@ Given the above two examples that are equivalent, the arguments can also be used --- vars: cli: - host: "{{ inventory_hostname }}" - username: operator - password: secret - transport: cli + host: "{{ inventory_hostname }}" + username: operator + password: secret + transport: cli tasks: - nxos_config: @@ -105,10 +105,10 @@ This is true for all values in the provider including transport. So you could h --- vars: cli: - host: "{{ inventory_hostname }}" - username: operator - password: secret - transport: cli + host: "{{ inventory_hostname }}" + username: operator + password: secret + transport: cli tasks: - nxos_config: @@ -121,8 +121,8 @@ If all values are provided via the provider argument, the rules for requirements --- vars: conn: - password: cisco_pass - transport: cli + password: cisco_pass + transport: cli tasks: - nxos_config: