Merge "Add toggle for sensitive data within octavia"

This commit is contained in:
Zuul 2020-05-24 10:34:17 +00:00 committed by Gerrit Code Review
commit c81d4a6474
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,19 @@
---
# Copyright 2020 Red Hat, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# All variables intended for modification should be placed in this file.
octavia_controller_config_hide_sensitive_logs: "{{ hide_sensitive_logs | default(true) }}"

View File

@ -15,7 +15,7 @@
dest: "{{ octavia_confd_prefix }}/{{ item.path }}"
selevel: s0
setype: svirt_sandbox_file_t
no_log: true
no_log: "{{ octavia_controller_config_hide_sensitive_logs | bool }}"
loop:
- content: "{{ private_key_content }}"
path: "{{ ca_private_key_path }}"