Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

25 строки
730 B

  1. ---
  2. - name: Ensure OpenSSL installed (RedHat)
  3. yum:
  4. name:
  5. - openssl
  6. state: present
  7. update_cache: no
  8. when: "matrix_ssl_retrieval_method == 'self-signed' and ansible_os_family == 'RedHat'"
  9. - name: Ensure APT usage dependencies are installed (Debian)
  10. apt:
  11. name:
  12. - openssl
  13. state: present
  14. update_cache: no
  15. when: "matrix_ssl_retrieval_method == 'self-signed' and ansible_os_family == 'Debian'"
  16. - name: Generate self-signed certificates
  17. include_tasks: "{{ role_path }}/tasks/ssl/setup_ssl_self_signed_obtain_for_domain.yml"
  18. with_items: "{{ matrix_ssl_domains_to_obtain_certificates_for }}"
  19. loop_control:
  20. loop_var: domain_name
  21. when: "matrix_ssl_retrieval_method == 'self-signed'"