mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-03 06:49:10 -07:00
Allow add_host to add hosts to multiple groups, groups is now an alias for groupname.
This commit is contained in:
parent
cde233f93c
commit
b365e04616
3 changed files with 22 additions and 18 deletions
|
@ -13,14 +13,15 @@ options:
|
|||
description:
|
||||
- The hostname/ip of the host to add to the inventory
|
||||
required: true
|
||||
groupname:
|
||||
groups:
|
||||
aliases: [ 'groupname' ]
|
||||
description:
|
||||
- The groupname to add the hostname to.
|
||||
- The groups to add the hostname to, comma seperated.
|
||||
required: false
|
||||
author: Seth Vidal
|
||||
examples:
|
||||
- description: add host to group 'just_created'
|
||||
code: add_host hostname=${ip_from_ec2create} groupname=just_created
|
||||
- description add a host with a non-standard port local to your machines
|
||||
code: add_host hostname='${new_ip}:${new_port}' ansible_ssh_port='${new_port}' ansible_ssh_host='${new_ip}' groupname=cloud_hosts
|
||||
'''
|
||||
- description: add host to group 'just_created' with variable foo=42
|
||||
code: add_host hostname=${ip_from_ec2create} groups=just_created foo=42
|
||||
- description: add a host with a non-standard port local to your machines
|
||||
code: add_host hostname='${new_ip}:${new_port}'
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue