Skip to content

Commit

Permalink
Fix verification varrefs
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyphreak committed May 4, 2024
1 parent 1f14bb9 commit 146fc19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions molecule/common/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
tasks:
- name: Verify Consul server node role
ansible.builtin.assert:
that: consul_role == 'server'
that: _consul_role == 'server'
when: inventory_hostname in (groups['consul_server'] | default(groups['all']))

- name: Verify Consul client node role
ansible.builtin.assert:
that: consul_role == 'client'
that: _consul_role == 'client'
when: inventory_hostname in (groups['consul_client'] | default([]))

- name: Verify Consul cluster status
Expand Down

0 comments on commit 146fc19

Please sign in to comment.