blob: 0ec75652774e206dc6f84edf69a72d0c0ebd97fc [file] [log] [blame]
---
- name: Validate that local_quorum is provided
fail:
msg: Please indicate whether local_quorum yes or no
when: local_quorum is not defined
- name: Set consistency when local_quorum is set
set_fact:
consistency: 'LOCAL_QUORUM'
when: local_quorum is defined and local_quorum
- name: Set consistency when local_quorum is not set
set_fact:
consistency: 'QUORUM'
when: local_quorum | default(false)
- name: Construct CQL file
template:
src: quorum.cql.j2
dest: /tmp/quorum.cql
- name: Update QUORUM settings
shell: "{{ apigee_installation_home }}/apigee-cassandra/bin/cqlsh -f /tmp/quorum.cql {{ local_address }} "