Merge pull request #1474 from jhoekx/group-by-plugin-template
Add a group_by action plugin.
This commit is contained in:
commit
125a30eef7
1 changed files with 23 additions and 0 deletions
23
group_by
Normal file
23
group_by
Normal file
|
@ -0,0 +1,23 @@
|
|||
# -*- 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
|
||||
examples:
|
||||
- description: Create groups based on the machine architecture
|
||||
code: group_by key=${ansible_machine}
|
||||
- description: Create groups like 'kvm-host'
|
||||
code: group_by key=${ansible_virtualization_type}-${ansible_virtualization_role}
|
||||
notes:
|
||||
- Spaces in group names are converted to dashes '-'.
|
||||
'''
|
Loading…
Reference in a new issue