ansible / awx

AWX provides a web-based user interface, REST API, and task engine built on top of Ansible. It is one of the upstream projects for Red Hat Ansible Automation Platform.
Other
13.5k stars 3.34k forks source link

Add RADIUS auth config dump #15126

Open jessicamack opened 3 weeks ago

jessicamack commented 3 weeks ago
SUMMARY

dump_auth_config will now also dump RADIUS config data.

ISSUE TYPE
COMPONENT NAME
AWX VERSION
awx: 24.2.1.
ADDITIONAL INFORMATION

if RADIUS is not configured

    {
        "RADIUS_missing_fields": [
            "SERVER"
        ]
    }

if RADIUS is configured

    {
        "type": "ansible_base.authentication.authenticator_plugins.RADIUS",
        "name": "RADIUS",
        "enabled": true,
        "create_objects": true,
        "users_unique": false,
        "remove_users": true,
        "configuration": {
            "SERVER": "localhost",
            "PORT": 1812,
            "SECRET": "test"
        }
    }