Commit 3b7280b3 by ktosiek

guide_rax.rst: fix add_host invocations

change `groupname` to `groups`, as per add_host documentation
parent 3ff8f010
...@@ -131,7 +131,7 @@ The rax module returns data about the nodes it creates, like IP addresses, hostn ...@@ -131,7 +131,7 @@ The rax module returns data about the nodes it creates, like IP addresses, hostn
hostname: "{{ item.name }}" hostname: "{{ item.name }}"
ansible_ssh_host: "{{ item.rax_accessipv4 }}" ansible_ssh_host: "{{ item.rax_accessipv4 }}"
ansible_ssh_pass: "{{ item.rax_adminpass }}" ansible_ssh_pass: "{{ item.rax_adminpass }}"
groupname: raxhosts groups: raxhosts
with_items: rax.success with_items: rax.success
when: rax.action == 'create' when: rax.action == 'create'
...@@ -519,7 +519,7 @@ Build a complete webserver environment with servers, custom networks and load ba ...@@ -519,7 +519,7 @@ Build a complete webserver environment with servers, custom networks and load ba
ansible_ssh_host: "{{ item.rax_accessipv4 }}" ansible_ssh_host: "{{ item.rax_accessipv4 }}"
ansible_ssh_pass: "{{ item.rax_adminpass }}" ansible_ssh_pass: "{{ item.rax_adminpass }}"
ansible_ssh_user: root ansible_ssh_user: root
groupname: web groups: web
with_items: rax.success with_items: rax.success
when: rax.action == 'create' when: rax.action == 'create'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment