Update add_host example in AWS Guide
The add_host module now uses "groups" instead of "groupname" to allow for specifying more than one group.
This commit is contained in:
parent
08896e2cfd
commit
10e14d0e0a
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ From this, we'll use the add_host module to dynamically create a host group cons
|
|||
register: ec2
|
||||
|
||||
- name: Add all instance public IPs to host group
|
||||
add_host: hostname={{ item.public_ip }} groupname=ec2hosts
|
||||
add_host: hostname={{ item.public_ip }} groups=ec2hosts
|
||||
with_items: ec2.instances
|
||||
|
||||
With the host group now created, a second play at the bottom of the the same provisioning playbook file might now have some configuration steps::
|
||||
|
|
Loading…
Reference in a new issue