Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn committed Sep 26, 2023
1 parent d9eaaaf commit 81593c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playbooks/acs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,15 @@
- repo_mtls_required
- ats_mtls_capable
- name: Enable identity service
when: groups.identity + groups.external_identity | length > 0
when: ((groups.identity | default([])) + (groups.external_identity | default([]))) | length > 0
ansible.builtin.set_fact:
identity_url: "http://{{ identity_host }}:{{ ports_cfg.identity.http }}/"
roles:
- role: "../roles/repository"
repo_keystore: "{{ repository_keystore | default({}) }}"
repository_properties: "{{ global_properties }}"
raw_properties: "{{ properties_snippets }}"
repository_identity_url: "{{ identity_url | default('') }}"
repository_identity_url: "{{ identity_url | default(omit) }}"
post_tasks:
- name: Update installation status file with ACS
become: true
Expand Down

0 comments on commit 81593c1

Please sign in to comment.