No description
Find a file
Mark van Huijstee a33a59118f
Merge pull request #15 from de-it-krachten/dev
Update supported platforms & CI (2026-03-14)
2026-03-15 12:36:07 +01:00
.github/workflows Update supported platforms & CI 2026-03-14 19:20:54 +01:00
defaults feat: Add support for managing extensions 2023-06-01 15:09:52 +02:00
meta Update CI 2026-03-06 22:26:11 +01:00
molecule/default Update supported platforms & CI 2026-03-14 14:36:44 +01:00
tasks Fix CI 2025-08-06 01:08:10 +02:00
.ansible-lint feat: Initial release 2023-05-01 14:01:13 +02:00
.cicd Update CI 2026-03-06 22:26:11 +01:00
.cicd.overwrite Update CI 2026-03-06 22:26:11 +01: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.7.0 [skip ci] 2026-03-14 16:28:29 +00:00
README.md Update CI 2026-03-06 22:26:11 +01: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 421
  • Fedora 431

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