No description
Find a file
semantic-release-bot 30a47bd770 chore(release): 1.8.0 [skip ci]
# [1.8.0](https://github.com/de-it-krachten/ansible-role-azure_cli/compare/v1.7.0...v1.8.0) (2026-07-26)

### Features

* Add support for ansible-core 2.20+ ([b88155a](b88155ab3f))
* Added support for Fedora 44 ([5164a45](5164a45ed1))
* Added support for Ubuntu 26.04 LTS ([b40fab4](b40fab4b0a))
* Added support for Ubuntu 26.04 LTS ([eaa6ccf](eaa6ccfa95))
* Drop support for Fedora 42 ([eca04a3](eca04a3776))
2026-07-26 19:51:12 +00:00
.github/workflows Update CI 2026-07-23 13:43:36 +02:00
defaults feat: Add support for managing extensions 2023-06-01 15:09:52 +02:00
meta Update CI 2026-06-07 16:43:10 +02:00
molecule/default Update CI 2026-07-25 16:15:47 +02:00
tasks feat: Add support for ansible-core 2.20+ 2026-06-07 16:24:27 +02:00
.ansible-lint Update CI 2026-06-07 16:43:10 +02:00
.cicd Update CI 2026-06-09 10:44:22 +02:00
.cicd.overwrite Update CI 2026-06-08 20:06:46 +02:00
.collections feat: Add support for Ubuntu 24.04 LTS + Fedora 40 2024-05-31 22:21:45 +02:00
.gitignore feat: Update supported platforms & CI 2024-12-29 01:58:34 +01:00
.releaserc.yml Update CI 2025-09-05 23:12:10 +02:00
.roles feat: Initial release 2023-05-01 14:01:13 +02:00
.yamllint feat: Update supported platforms & CI 2024-12-29 01:58:34 +01:00
CHANGELOG.md chore(release): 1.8.0 [skip ci] 2026-07-26 19:51:12 +00:00
README.md Update CI 2026-06-08 20:06:46 +02:00

CI

ansible-role-azure_cli

Installs the azure cli on a variety of platforms

Dependencies

Roles

None

Collections

  • community.general

Platforms

Supported platforms

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

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

Role Variables

defaults/main.yml


# List of extensions to install
azure_cli_extensions: []

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'azure_cli'
  hosts: all
  become: 'yes'
  vars:
    molecule_driver: '{{ lookup(''env'', ''MOLECULE_DRIVER_NAME'') }}'
    azure_cli_extensions:
      - name: aks-preview
      - name: ssh
        system: true
      - name: image-copy-extension
        version: 0.2.12
  tasks:
    - name: Include role 'azure_cli'
      ansible.builtin.include_role:
        name: azure_cli