|
@@ -426,6 +426,12 @@ class GoogleIdentityProvider(IdentityProviderOauthBase):
|
|
|
IdentityProviderOauthBase.__init__(self, api_version, idp)
|
|
|
self._optional += [['hostedDomain', 'hosted_domain']]
|
|
|
|
|
|
+ def validate(self):
|
|
|
+ ''' validate this idp instance '''
|
|
|
+ if self.challenge:
|
|
|
+ raise errors.AnsibleFilterError("|failed provider {0} does not "
|
|
|
+ "allow challenge authentication".format(self.__class__.__name__))
|
|
|
+
|
|
|
|
|
|
class GitHubIdentityProvider(IdentityProviderOauthBase):
|
|
|
""" GitHubIdentityProvider
|
|
@@ -444,6 +450,12 @@ class GitHubIdentityProvider(IdentityProviderOauthBase):
|
|
|
self._optional += [['organizations'],
|
|
|
['teams']]
|
|
|
|
|
|
+ def validate(self):
|
|
|
+ ''' validate this idp instance '''
|
|
|
+ if self.challenge:
|
|
|
+ raise errors.AnsibleFilterError("|failed provider {0} does not "
|
|
|
+ "allow challenge authentication".format(self.__class__.__name__))
|
|
|
+
|
|
|
|
|
|
class FilterModule(object):
|
|
|
''' Custom ansible filters for use by the openshift_master role'''
|