Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
484 B

  1. ---
  2. - ansible.builtin.include_role:
  3. name: custom/matrix-base
  4. tasks_from: ensure_openssl_installed
  5. when: "matrix_ssl_retrieval_method == 'self-signed'"
  6. - name: Generate self-signed certificates
  7. ansible.builtin.include_tasks: "{{ role_path }}/tasks/ssl/setup_ssl_self_signed_obtain_for_domain.yml"
  8. with_items: "{{ matrix_ssl_domains_to_obtain_certificates_for | unique }}"
  9. loop_control:
  10. loop_var: domain_name
  11. when: "matrix_ssl_retrieval_method == 'self-signed'"