summaryrefslogtreecommitdiff
path: root/test/integration/targets/lookup_hashi_vault/playbooks/install_dependencies.yml
blob: adf6cb3d7f312031d908ed2ec34875560880a498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- hosts: localhost
  tasks:
    - name: Install openssl
      import_role:
        name: setup_openssl

    - name: "RedHat <= 7, select last version compatible with request 2.6.0 (this version doesn't support approle auth)"
      set_fact:
        hvac_package: 'hvac==0.2.5'
      when: ansible_distribution == 'RedHat' and ansible_distribution_major_version is version('7', '<=')

    - name: 'CentOS < 7, select last version compatible with Python 2.6'
      set_fact:
        hvac_package: 'hvac==0.5.0'
      when: ansible_distribution == 'CentOS' and ansible_distribution_major_version is version('7', '<')

    - name: 'Install hvac Python package'
      pip:
        name: "{{ hvac_package|default('hvac') }}"
        extra_args: "-c {{ playbook_dir }}/../../../../lib/ansible_test/_data/requirements/constraints.txt"