mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-12-18 15:22:18 +00:00
8 lines
156 B
YAML
8 lines
156 B
YAML
# -*- coding: utf-8 -*-
|
|
# vim: ft=yaml
|
|
---
|
|
{% for user, uid in pillar.get('users', {}).items() %}
|
|
{{user}}:
|
|
user.present:
|
|
- uid: {{uid}}
|
|
{% endfor %}
|