1
0
Fork 0

Merge github.com:PLOS-Formulas/sudoers-formula into dev

This commit is contained in:
Eldo Varghese 2019-08-26 14:05:41 -07:00
commit 33e267a6cc
No known key found for this signature in database
GPG Key ID: B132CA06E20D5F80
3 changed files with 33 additions and 1 deletions

View File

@ -1,3 +1,4 @@
{% from "sudoers/map.jinja" import ad_group_maps with context %}
{%- if (not included) %}
{%- set sudoers = pillar.get('sudoers', {}) %}
{%- if grains['os_family'] == 'Debian' %}
@ -94,6 +95,13 @@ Runas_Alias {{ name }} = {{ ",".join(runas) }}
%{{ group }} {{ spec }}
{%- endfor %}
{%- endfor %}
{%- for unix_group in ad_groups %}
{%- if unix_group in ad_group_maps.keys() %}
%{{ unix_group }} {{ ad_group_maps[unix_group] }}
{%- else %}
%{{ unix_group }} {{ ad_group_maps['default'] }}
{%- endif %}
{%- endfor %}
{% if includedir %}
## Read drop-in files from /etc/sudoers.d

View File

@ -1,5 +1,8 @@
{% from "sudoers/map.jinja" import sudoers with context %}
# our list of plos core active directory groups
{%- set ad_groups = salt['pillar.get']('group_map:core').keys() %}
sudo:
pkg.installed:
- name: {{ sudoers.pkg }}
@ -14,5 +17,6 @@ sudo:
- check_cmd: {{ sudoers.get('exec-prefix', '/usr/sbin') }}/visudo -c -f
- context:
included: False
ad_groups: {{ ad_groups|tojson }}
- require:
- pkg: sudo

View File

@ -13,4 +13,24 @@
'config-path': '/usr/local/etc',
'exec-prefix': '/usr/local/sbin',
'group': 'wheel'},
}, merge=salt['pillar.get']('sudoers:lookup')) %}
}, merge=salt['pillar.get']('sudoers:lookup', None)) %}
# our plos active directory core groups sudoers permissions, filtered by environment
{% set ad_group_maps = salt['grains.filter_by']({
'default': { 'default': 'ALL = (root) NOEXEC:NOPASSWD: SUPPORT' },
'vagrant': { 'default': 'ALL = (ALL:ALL) NOPASSWD: ALL' },
'dev': { 'default': 'ALL = (ALL:ALL) NOPASSWD: ALL' },
'qa': {
'default': 'ALL = (root) NOEXEC:NOPASSWD: SUPPORT',
'plosdev': 'ALL = (ALL:ALL) NOPASSWD: ALL',
'plosqa': 'ALL = (ALL:ALL) NOPASSWD: ALL',
},
'stage': {
'default': 'ALL = (root) NOEXEC:NOPASSWD: SUPPORT',
'plosdev': 'ALL = (ALL:ALL) NOPASSWD: ALL',
'plosqa': 'ALL = (ALL:ALL) NOPASSWD: ALL'
}
},
grain='environment',
merge=salt['pillar.get']('group_maps:lookup', None))
%}