ansible-role-pki/handlers/main.yml
Dmitriy Rabotyagov 95aaaf1337 Allow to provide custom handler names
Introduce variables that allow to customize handler names that are
being used. This is especially useful when role is included multiple
times within same playbook.

Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-rabbitmq_server/+/876436
Needed-By: https://review.opendev.org/c/openstack/openstack-ansible/+/871189/
Change-Id: I66ad04a5dbbce29c052895649792fa8a49e40a57
2023-03-06 11:46:24 +00:00

30 lines
925 B
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.
# when the created CA certificates are changed
- name: "{{ pki_handler_ca_changed }}"
meta: noop
when: false
# when the created server certificates are changed
- name: "{{ pki_handler_cert_changed }}"
meta: noop
when: false
# when a certificate is installed onto a server
- name: "{{ pki_handler_cert_installed }}"
meta: noop
when: false