---
# Copyright 2021, BBC
#
# 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.
# Gather CA definitions from hostvars
_pki_ca_candidates: "{{ query('vars', *query('varnames', '^' ~ pki_search_authorities_pattern)) | flatten(levels=1) }}"
_pki_ca_defs: "{{ pki_authorities | union(_pki_ca_candidates) | rejectattr('condition', 'false') }}"
# Gather CA installation definitions from hostvars
_pki_install_ca_candidates: "{{ query('vars', *query('varnames', '^' ~ pki_search_install_ca_pattern)) | flatten(levels=1) }}"
_pki_install_ca_defs: "{{ pki_install_ca | union(_pki_install_ca_candidates) | rejectattr('condition', 'false') }}"
# Gather certificate definitions from hostvars
_pki_certificates_candidates: "{{ query('vars', *query('varnames', '^' ~ pki_search_certificates_pattern)) | flatten(levels=1) }}"
_pki_certificates_defs: "{{ pki_certificates | union(_pki_certificates_candidates) | rejectattr('condition', 'false') }}"
# Gather certificate installation definitions from hostvars
_pki_install_certificates_candidates: "{{ query('vars', *query('varnames', '^' ~ pki_search_install_certificates_pattern)) | flatten(levels=1) }}"
_pki_install_certificates_defs: "{{ pki_install_certificates | union(_pki_install_certificates_candidates) | rejectattr('condition', 'false') }}"
# Command used to update CA trust store
pki_ca_install_command:
apt: "update-ca-certificates"
dnf: "update-ca-trust extract"
# locations of system trust stores to install CA certs to
pki_trust_store_location:
apt: /usr/local/share/ca-certificates/
dnf: /etc/pki/ca-trust/source/anchors/
# standalone backend variables
cert_dir: "{{ pki_dir }}/certs"
# subdirectories to be created for holding server certs/keys/csr
pki_cert_dirs:
- path: "{{ pki_dir }}"
- path: "{{ pki_dir ~ '/certs' }}"
mode: "{{ pki_cert_dir_mode }}"
- path: "{{ pki_dir ~ '/certs/csr' }}"
mode: "{{ pki_key_dir_mode }}"
- path: "{{ pki_dir ~ '/certs/private' }}"
mode: "{{ pki_key_dir_mode }}"
- path: "{{ pki_dir ~ '/certs/certs' }}"
mode: "{{ pki_cert_dir_mode }}"
# directories for certificate authorities on the CA host
pki_ca_dirs:
- path: "{{ pki_dir }}"
- path: "{{ pki_dir ~ '/roots' }}"