Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
695 B

  1. ---
  2. - name: Prepare Matrix Authentication Service private key file path ({{ private_key_definition.key_file }})
  3. ansible.builtin.set_fact:
  4. matrix_authentication_service_private_key_file_path: "{{ matrix_authentication_service_data_keys_path }}/{{ private_key_definition.key_file }}"
  5. - name: Prepare Matrix Authentication Service private key file ({{ private_key_definition.key_file }})
  6. ansible.builtin.command:
  7. cmd: "{{ private_key_definition.generation_command | replace('__KEY_FILE_PATH__', matrix_authentication_service_private_key_file_path) }}"
  8. creates: "{{ matrix_authentication_service_private_key_file_path }}"
  9. become: true
  10. become_user: "{{ matrix_user_username }}"