summaryrefslogtreecommitdiff
path: root/inventory/group_by
blob: e2868faadf19cb1d09cdae4c899aa6e8fa3684fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- 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"
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
-  group_by: key=${ansible_machine}
# Create groups like 'kvm-host'
-  group_by: key=${ansible_virtualization_type}-${ansible_virtualization_role}
'''