From 417d7c29ee6e7941e5b8c259a167a149964e3414 Mon Sep 17 00:00:00 2001 From: Chris Church Date: Tue, 6 Dec 2016 12:56:25 -0500 Subject: [PATCH] Allow SAML entity ID to be any string, not required to be a URL. --- awx/sso/conf.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/awx/sso/conf.py b/awx/sso/conf.py index 4bde08e55a..c3ab7f7e56 100644 --- a/awx/sso/conf.py +++ b/awx/sso/conf.py @@ -924,13 +924,12 @@ register( register( 'SOCIAL_AUTH_SAML_SP_ENTITY_ID', - field_class=fields.URLField, - schemes=('http', 'https'), + field_class=fields.CharField, allow_blank=True, default='', label=_('SAML Service Provider Entity ID'), - help_text=_('Set to a URL for a domain name you own (does not need to be a ' - 'valid URL; only used as a unique ID).'), + help_text=_('The application-defined unique identifier used as the ' + 'audience of the SAML service provider (SP) configuration.'), category=_('SAML'), category_slug='saml', feature_required='enterprise_auth',