Browse Source

Stop using deprecated `vars` variable for matrix-dimension

pull/4778/head
Kim Brose 3 months ago
committed by Slavi Pantaleev
parent
commit
caa2e338bc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      roles/custom/matrix-dimension/tasks/validate_config.yml

+ 1
- 1
roles/custom/matrix-dimension/tasks/validate_config.yml View File

@@ -39,7 +39,7 @@
ansible.builtin.fail: ansible.builtin.fail:
msg: >- msg: >-
You need to define a required configuration setting (`{{ item }}`). You need to define a required configuration setting (`{{ item }}`).
when: "vars[item] == ''"
when: "lookup('vars', item, default='') == ''"
with_items: with_items:
- matrix_dimension_container_labels_traefik_hostname - matrix_dimension_container_labels_traefik_hostname
- matrix_dimension_container_labels_traefik_path_prefix - matrix_dimension_container_labels_traefik_path_prefix


Loading…
Cancel
Save