Skip to content

Commit

Permalink
fix: (IAC-1362) Fix the V4M_ROUTING Validation Task (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarpat authored Feb 7, 2024
1 parent e823436 commit 92f2ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/monitoring/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
---
- name: V4M - ensure supported value for V4M_ROUTING
ansible.builtin.assert:
that: '{{ ["host-based", "path-based"] | intersect(V4M_ROUTING) | count == 1 }}'
that: '{{ ["host-based", "path-based"] | intersect([V4M_ROUTING]) | count == 1 }}'
msg: >
Invalid V4M_ROUTING value: {{ V4M_ROUTING }}
Expand Down

0 comments on commit 92f2ab9

Please sign in to comment.