No description
Find a file
semantic-release-bot e51a2f99b7 chore(release): 1.7.0 [skip ci]
# [1.7.0](https://github.com/de-it-krachten/ansible-role-hashicorp/compare/v1.6.0...v1.7.0) (2026-08-05)

### Bug Fixes

* Fix deprecation warnings ([426af7f](426af7fe2f))

### Features

* Add support for ansible-core 2.20+ ([4208688](420868827b))
* Added support for Fedora 44 ([0f00873](0f008738c1))
* Added support for Ubuntu 26.04 LTS ([604d076](604d076ef3))
* Drop support for Fedora 42 ([07e5b44](07e5b44db2))
2026-08-05 08:52:22 +00:00
.github/workflows fix: Fix deprecation warnings 2026-08-04 22:26:52 +02:00
defaults Improve support for ansible-core 2.20+ 2026-06-07 20:44:26 +02:00
meta Update CI 2026-06-07 16:54:39 +02:00
molecule/default fix: Fix deprecation warnings 2026-08-04 22:26:52 +02:00
tasks fix: Fix deprecation warnings 2026-08-04 22:26:52 +02:00
.ansible-lint Update CI 2026-06-07 16:54:39 +02:00
.cicd Update CI 2026-06-09 10:58:11 +02:00
.cicd.overwrite Update CI 2026-03-06 22:41:49 +01:00
.collections feat: Move to FQCN 2022-10-08 13:36:31 +02:00
.gitignore feat: Update supported platforms & CI 2024-12-29 02:11:41 +01:00
.releaserc.yml Update CI 2026-03-06 22:41:49 +01:00
.roles feat: Update CI to latest standards 2022-10-08 13:36:51 +02:00
.yamllint feat: Update supported platforms & CI 2024-12-29 02:11:41 +01:00
CHANGELOG.md chore(release): 1.7.0 [skip ci] 2026-08-05 08:52:22 +00:00
README.md fix: Fix deprecation warnings 2026-08-04 22:26:52 +02:00

CI

ansible-role-hashicorp

Install hashicorp products

Dependencies

Roles

None

Collections

None

Platforms

Supported platforms

  • Red Hat Enterprise Linux 81
  • Red Hat Enterprise Linux 91
  • RockyLinux 8
  • RockyLinux 9
  • OracleLinux 8
  • OracleLinux 9
  • AlmaLinux 8
  • AlmaLinux 9
  • Debian 11 (Bullseye)
  • Debian 12 (Bookworm)
  • Ubuntu 22.04 LTS
  • Ubuntu 24.04 LTS
  • Ubuntu 26.04 LTS
  • Fedora 43
  • Fedora 441

Note: 1 : no automated testing is performed on these platforms

Role Variables

defaults/main.yml


# product name
hashicorp_product: "{{ role_name | regex_replace('deitkrachten\\.') }}"

# product platform
hashicorp_platform: "{{ ansible_facts.system | lower }}"

# product architecture
hashicorp_arch: "{{ 'amd64' if ansible_facts.architecture == 'x86_64' else ansible_facts.architecture }}"

# product install mode (binary or package)
hashicorp_install_mode: package

# product zip filename
hashicorp_zip: >-
  {{ hashicorp_product }}_{{ hashicorp_product_version }}_{{ hashicorp_platform }}_{{ hashicorp_arch }}.zip

# product download url
hashicorp_product_url: >-
  https://releases.hashicorp.com/{{ hashicorp_product }}/{{ hashicorp_product_version }}/{{ hashicorp_zip }}

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'hashicorp'
  hosts: all
  tasks:
    - name: Include role 'hashicorp' (binary)
      include_role:
        name: hashicorp
      vars:
        hashicorp_product: '{{ item }}'
        hashicorp_install_mode: binary
      loop:
        - terraform
        - vagrant
        - terraform
        - packer
        - consul
        - vault
        - nomad