blob: 1ab082736584f9fd4b8cf8a69290bebf8fea1eea [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_facts:
consistency: LOCAL_QUORUM
when: local_quorum is defined and local_quorum | bool(true)
- name: Set consistency when local_quorum is not set
set_facts:
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 }} "