فهرست منبع

Merge pull request #7349 from sdodson/finer-grain-no_log

Only run no_log on task that scrapes all inventory variables
Scott Dodson 7 سال پیش
والد
کامیت
d93d422e7a
2فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 0 1
      playbooks/init/basic_facts.yml
  2. 3 1
      roles/openshift_sanitize_inventory/tasks/deprecations.yml

+ 0 - 1
playbooks/init/basic_facts.yml

@@ -15,7 +15,6 @@
   - name: Run openshift_sanitize_inventory to set variables
     import_role:
       name: openshift_sanitize_inventory
-    no_log: True
 
   - name: Detecting Operating System from ostree_booted
     stat:

+ 3 - 1
roles/openshift_sanitize_inventory/tasks/deprecations.yml

@@ -1,11 +1,13 @@
 ---
-
+# Since this task scrapes all inventory variables which may contain sensitive bits
+# mark it no_log
 - name: Check for usage of deprecated variables
   check_deprecated:
     facts: "{{ hostvars[inventory_hostname] }}"
     vars: "{{ __warn_deprecated_vars }}"
     header: "{{ __deprecation_header }}"
   register: dep_check
+  no_log: true
 
 - block:
   - debug: msg="{{ dep_check.msg }}"