Hi team,
I would like to integrate AWX to Windows Active directory. So kindly share if there is any good documentation to refer to.
Hi team,
I would like to integrate AWX to Windows Active directory. So kindly share if there is any good documentation to refer to.
Go to Settings → Authentication → LDAP and complete the appropriate values. These fields might be needed depending on your environment:
LDAP SERVER URI: ldap://IP
LDAP BIND DN: CN=User,OU=Users,DC=example,DC=COM
LDAP GROUP TYPE: ActiveDirectoryGroupType
LDAP USER SEARCH:
[
“OU=GMD Users,DC=example,DC=com”,
“SCOPE_SUBTREE”,
“(userPrincipalName=%(user)s)”
]
LDAP GROUP SEARCH:
[
“DC=example,DC=com”,
“SCOPE_SUBTREE”,
“(objectClass=group)”
]
LDAP USER ATTRIBUTE MAP:
{
“first_name”: “givenName”,
“last_name”: “sn”,
“email”: “mail”
}
Your AD might require TLS for authentication, maybe. Hope it helps
Hi Mike,
Thank you very much. Now I have learned how to integrate AWX to Windows active directory and how to allow/restrict to AWX organization/projects.
Thank you Angel for your help/support.
Now am able to integrate AWX with windows active directory.