We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db3a3a7 commit a2f6c11Copy full SHA for a2f6c11
uw_saml2/idp/federated.py
@@ -101,8 +101,9 @@ class FredHutchIdp(IdpConfig):
101
102
103
class FredHutchIdpAzure(IdpConfig):
104
- entity_id = 'https://sts.windows.net/0054a3ea-b394-418b-ad1a-174138231fd6/'
105
- sso_url = 'https://login.microsoftonline.com/0054a3ea-b394-418b-ad1a-174138231fd6/saml2'
+ _azure_tenant_id = '0054a3ea-b394-418b-ad1a-174138231fd6'
+ entity_id = f'https://sts.windows.net/{_azure_tenant_id}/'
106
+ sso_url = f'https://login.microsoftonline.com/{_azure_tenant_id}/saml2'
107
x509_cert = '''
108
MIIC8DCCAdigAwIBAgIQGB680XRFNZhCkepWMRYORjANBgkqhkiG9w0BAQsFADA0
109
MTIwMAYDVQQDEylNaWNyb3NvZnQgQXp1cmUgRmVkZXJhdGVkIFNTTyBDZXJ0aWZp
0 commit comments