deec9f47a2
Create all the necessary directories for the CA and any certificates that are created when the CA is initialised. This means that those tasks are not re-run on the PKI host every time a server cert is created. Change-Id: Ib2a090dd0d164927307b6617e988f715e8a08db6
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
---
|
|
# 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.
|
|
|
|
# directories for certificate authorities on the CA host
|
|
pki_ca_dirs:
|
|
- path: "{{ pki_dir }}"
|
|
- path: "{{ pki_dir ~ '/roots' }}"
|
|
|
|
# directories for server certificates on the CA host
|
|
_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 }}"
|
|
|
|
pki_ca_install_command:
|
|
apt: "update-ca-certificates"
|
|
dnf: "update-ca-trust extract"
|