[AAP-52144] Remove AWX Prefix from the SAML migrator (#7072)

We were adding an AWX prefix to SAML migrator
This commit is contained in:
Madhu Kanoor 2025-08-28 09:05:13 -04:00 committed by thedoubl3j
parent af2efec2b4
commit bb46268eec
No known key found for this signature in database
GPG Key ID: E84C42ACF75B0768

View File

@ -143,7 +143,7 @@ class SAMLMigrator(BaseAuthenticatorMigrator):
name = config_settings["name"]
# Generate authenticator name and slug
authenticator_name = f"AWX-{category.replace('-', '_').title()}-{name}"
authenticator_name = f"{category.replace('-', '_').title()}-{name}"
authenticator_slug = self._generate_authenticator_slug("saml", name)
self._write_output(f"\n--- Processing {category} authenticator ---")