diff --git a/salt/files/master.d/_defaults.conf b/salt/files/master.d/_defaults.conf
index 4b5a28001dffa9d9421cd5c72a8e9dc3438b47d0..53cbd41e84a7e77eec6a2b3c01cf49463f545da1 100644
--- a/salt/files/master.d/_defaults.conf
+++ b/salt/files/master.d/_defaults.conf
@@ -811,12 +811,30 @@ peer_run:
 # The example below enables minion foo.example.com to get 'network.interfaces' mine
 # data only, minions web* to get all network.* and disk.* mine data and all other
 # minions won't get any mine data.
+{% if 'mine_get' in cfg_master -%}
+mine_get:
+{%- for minion, data in cfg_master['mine_get']|dictsort %}
+  {{ minion }}:
+{%- for command in data %}
+    - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
+{%- endfor -%}
+{%- endfor -%}
+{% elif 'mine_get' in cfg_salt -%}
+mine_get:
+{%- for minion, data in cfg_salt['mine_get']|dictsort %}
+  {{ minion }}:
+{%- for command in data %}
+    - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
+{%- endfor -%}
+{%- endfor -%}
+{% else -%}
 # mine_get:
 #   foo.example.com:
 #     - network.interfaces
 #   web.*:
 #     - network.*
 #     - disk.*
+{%- endif %}
 
 
 #####         Logging settings       #####