|
56 | 56 | when: identity_enabled |
57 | 57 | ansible.builtin.set_fact: |
58 | 58 | identity_url: "{{ alfresco_url }}/auth" |
59 | | - code_flow_pkce_supported: "{{ adw_version is version('4.5.0', 'ge') }}" |
| 59 | + code_flow_pkce_supported: "{{ acs_play_adw_version is version('4.5.0', 'ge') }}" |
60 | 60 |
|
61 | 61 | - name: Database Role |
62 | 62 | hosts: database[0] |
|
403 | 403 | adf_app_port: 8881 |
404 | 404 | adf_app_src_archive: "{{ acc_url }}" |
405 | 405 | adf_app_src_checksum: "{{ acc_checksum }}" |
406 | | - adf_app_version: "{{ acc_version }}" |
| 406 | + adf_app_version: "{{ acs_play_acc_version }}" |
407 | 407 | adf_app_configuration: >- |
408 | 408 | {{ |
409 | 409 | adf_app_oauth_configuration | default({}) | |
|
418 | 418 | acc: |
419 | 419 | artifact_name: "{{ acc_artifact_id }}" |
420 | 420 | repository: "{{ acc_repository }}" |
421 | | - version: "{{ acc_version }}" |
| 421 | + version: "{{ acs_play_acc_version }}" |
422 | 422 | ansible.builtin.blockinfile: |
423 | 423 | block: "{{ acc_components | to_nice_yaml(indent=2) }}" |
424 | 424 | create: true |
|
434 | 434 | gather_facts: false |
435 | 435 | vars: |
436 | 436 | adw_sum: >- |
437 | | - {% if adw_version is version('4.1.0','ge') -%} |
| 437 | + {% if acs_play_adw_version is version('4.1.0','ge') -%} |
438 | 438 | {{ adw_checksum }} |
439 | 439 | {% else -%} |
440 | 440 | {{ adw_checksum.split(':')[0] }}: |
|
450 | 450 | adf_app_src_checksum: "{{ adw_sum }}" |
451 | 451 | adf_app_src_username: "{{ nexus_user }}" |
452 | 452 | adf_app_src_password: "{{ nexus_password }}" |
453 | | - adf_app_version: "{{ adw_version }}" |
| 453 | + adf_app_version: "{{ acs_play_adw_version }}" |
454 | 454 | adf_app_configuration: >- |
455 | 455 | {{ |
456 | 456 | adf_app_oauth_configuration | default({}) | |
|
465 | 465 | adw: |
466 | 466 | artifact_name: "{{ adw_artifact_id }}" |
467 | 467 | repository: "{{ adw_repository }}" |
468 | | - version: "{{ adw_version }}" |
| 468 | + version: "{{ acs_play_adw_version }}" |
469 | 469 | ansible.builtin.blockinfile: |
470 | 470 | block: "{{ adw_components | to_nice_yaml(indent=2) }}" |
471 | 471 | create: true |
|
0 commit comments