No description
Find a file
semantic-release-bot 0c3d69d6c1 chore(release): 1.6.0 [skip ci]
# [1.6.0](https://github.com/de-it-krachten/ansible-role-awx_export/compare/v1.5.0...v1.6.0) (2026-08-04)

### Bug Fixes

* Add ansible-core 2.20+ compatibility ([004316d](004316d97d))

### Features

* Added support for Fedora 43 ([88532bc](88532bccba))
* Added support for Fedora 44 ([723d767](723d767125))
* Added support for Ubuntu 26.04 LTS ([8b4a413](8b4a413b05))
* Drop support for Fedora 42 ([038ff65](038ff65b19))
2026-08-04 19:21:58 +00:00
.github/workflows Update CI 2026-08-04 20:57:58 +02:00
defaults Update supported platforms & CI 2026-03-15 23:38:27 +01:00
meta Update CI 2026-06-07 16:42:49 +02:00
molecule/default Update CI 2026-08-04 20:57:58 +02:00
tasks fix: Add ansible-core 2.20+ compatibility 2026-06-10 00:44:33 +02:00
templates fix: Add ansible-core 2.20+ compatibility 2026-06-10 00:44:33 +02:00
.ansible-lint Update CI 2026-06-07 16:42:49 +02:00
.cicd Update CI 2026-06-09 10:43:58 +02:00
.cicd.overwrite Update CI 2026-06-10 00:45:06 +02:00
.collections Update supported platforms & CI 2026-03-15 23:38:27 +01:00
.gitignore feat: Update supported platforms & CI 2024-12-29 01:30:23 +01:00
.releaserc.yml Update CI 2026-03-06 22:25:37 +01:00
.roles feat: Initial release 2022-10-20 13:05:26 +02:00
.yamllint feat: Update supported platforms & CI 2024-12-29 01:30:23 +01:00
CHANGELOG.md chore(release): 1.6.0 [skip ci] 2026-08-04 19:21:58 +00:00
README.md Update CI 2026-06-10 00:45:06 +02:00

CI

ansible-role-awx_export

export AWX configuration into JSON

Dependencies

Roles

  • deitkrachten.awx_cli

Collections

  • awx.awx

Platforms

Supported platforms

  • Red Hat Enterprise Linux 81
  • Red Hat Enterprise Linux 91
  • Red Hat Enterprise Linux 101
  • RockyLinux 81
  • RockyLinux 91
  • RockyLinux 101
  • OracleLinux 81
  • OracleLinux 91
  • OracleLinux 101
  • AlmaLinux 81
  • AlmaLinux 91
  • AlmaLinux 101
  • Debian 11 (Bullseye)1
  • Debian 12 (Bookworm)1
  • Debian 13 (Trixie)1
  • Ubuntu 20.04 LTS1
  • Ubuntu 22.04 LTS1
  • Ubuntu 24.04 LTS1
  • Ubuntu 26.04 LTS1
  • Fedora 431
  • Fedora 441

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

Role Variables

defaults/main.yml


# Use non default virtual env
# awx_python_interpreter: /virtenv/awx/bin/python3

# Full path to the awxkit / awx command
awx_command: awx

# Host to execute code from
# awx_execution_host: localhost

# AWX url
awx_url: https://127.0.0.1

# AWX username to use
awx_username: admin

# AWX password to use
awx_password: admin

# Should SSL/TLS verification be done
awx_verify_ssl: false

# Location where to export files to
# awx_export_path: /tmp/awx

# List of resources to export
awx_export_resources:
  - settings
  - credential_types
  - credentials
  # - execution_environments
  - inventory
  - inventory_sources
  - job_templates
  - notification_templates
  - organizations
  - projects
  - teams
  - users
  - workflow_job_templates
  - roles
  - schedules
  - applications
  - system_job_templates
  - groups
  - hosts

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'awx_export' pre playbook
  ansible.builtin.import_playbook: converge-pre.yml
  when: molecule_converge_pre is undefined or molecule_converge_pre | bool
- name: sample playbook for role 'awx_export'
  hosts: all
  become: 'no'
  vars:
    molecule_driver: '{{ lookup(''env'', ''MOLECULE_DRIVER_NAME'') }}'
    awx_python_interpreter: /usr/local/venv/awxkit/bin/python3
    awx_command: /usr/local/bin/awx
    awx_export_path: /tmp/awx
    awx_url: https://127.0.0.1
    awx_username: admin
    awx_password: Admin123!
    awx_verify_ssl: false
  tasks:
    - name: Include role 'awx_export'
      ansible.builtin.include_role:
        name: awx_export