ansible/library/inventory/group_by

26 lines
665 B
Text
Raw Normal View History

2012-10-27 19:47:47 +02:00
# -*- mode: python -*-
DOCUMENTATION = '''
---
module: group_by
short_description: Create Ansible groups based on facts
description:
- Use facts to create ad-hoc groups that can be used later in a playbook.
version_added: "0.9"
2012-10-27 19:47:47 +02:00
options:
key:
description:
- The variables whose values will be used as groups
required: true
author: Jeroen Hoekx
notes:
- Spaces in group names are converted to dashes '-'.
'''
EXAMPLES = '''
# Create groups based on the machine architecture
2013-07-19 15:43:27 +02:00
- group_by: key=machine_{{ ansible_machine }}
# Create groups like 'kvm-host'
2013-07-19 15:43:27 +02:00
- group_by: key=virt_{{ ansible_virtualization_type }}_{{ ansible_virtualization_role }}
'''