Browse Source

Lock down permissions on named certificates

Eli Young 9 years ago
parent
commit
a51b7d5fda
1 changed files with 2 additions and 1 deletions
  1. 2 1
      playbooks/common/openshift-master/config.yml

+ 2 - 1
playbooks/common/openshift-master/config.yml

@@ -311,13 +311,14 @@
     file:
       path: "{{ named_certs_dir }}"
       state: directory
+      mode: 0700
     when: named_certs_specified | bool
   - name: Land named certificates
     copy: src="{{ item.certfile }}" dest="{{ named_certs_dir }}"
     with_items: openshift_master_named_certificates
     when: named_certs_specified | bool
   - name: Land named certificate keys
-    copy: src="{{ item.keyfile }}" dest="{{ named_certs_dir }}"
+    copy: src="{{ item.keyfile }}" dest="{{ named_certs_dir }}" mode=0600
     with_items: openshift_master_named_certificates
     when: named_certs_specified | bool