瀏覽代碼
Stop using deprecated `vars` variable for matrix-dimension
pull/4776/head
Kim Brose
8 月之前
committed by
GitHub
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: B5690EEEBB952194
共有
1 個檔案被更改,包括
1 行新增 和
1 行删除
-
roles/custom/matrix-dimension/tasks/validate_config.yml
|
|
|
@@ -39,7 +39,7 @@ |
|
|
|
ansible.builtin.fail: |
|
|
|
msg: >- |
|
|
|
You need to define a required configuration setting (`{{ item }}`). |
|
|
|
when: "vars[item] == ''" |
|
|
|
when: "lookup('vars', item, default='') == ''" |
|
|
|
with_items: |
|
|
|
- matrix_dimension_container_labels_traefik_hostname |
|
|
|
- matrix_dimension_container_labels_traefik_path_prefix |
|
|
|
|