-
Notifications
You must be signed in to change notification settings - Fork 49
/
apps.yml
4133 lines (4130 loc) · 110 KB
/
apps.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Data Classification : Public
# The contents of this file are meant to be publicly accessible and this file contains no private data
# NOTE: authorized_groups and authorized_users control two things independently:
#
# 1. Does the SSO Dashboard display a tile to the user for this application?
#
# No, if display: false.
# No SSO users can see the tile.
#
# Maybe, if display: true.
# If groups/users are defined,
# The user must be a member of them to see the tile.
# Otherwise,
# All SSO users (including the general public) can see the tile.
#
# 2. Does Auth0 restrict SSO access to this application by group or user?
#
# No, if client_id is missing.
# All SSO users (including the general public) can access the app.
#
# Maybe, if client_id is defined.
# If groups/users are defined,
# The user must be a member of them to access the application.
# Otherwise,
# All SSO users (including the general public) can access the app.
# NOTE: MFA is generally required, following these rules:
#
# 1. If the client_id is missing, MFA is not required. (This is uncommon.)
#
# 2. If `AAL: LOW` is present, MFA is not required. (This is uncommon.)
#
# 3. Otherwise, MFA is required.
#
# After a user logs in with one of the supported methods (ldap, fxa, etc);
# the auth method will inform us if the user's account has MFA set up.
#
# Access will be denied if the user doesn't have MFA configured.
#
# Users need to configure MFA using the appropriate process for their
# chosen auth method. LDAP is well-understood; for other methods, enabling
# passkeys, authenticators, and/or other MFA methods can be done at:
#
# FxA/MzA: https://accounts.firefox.com/settings#two-step-authentication
# GitHub: https://github.com/settings/security
# Google: https://myaccount.google.com/security#recovery
# Email: (not supported)
apps:
- application:
authorized_groups:
- mozilliansorg_netlify-access
authorized_users: []
client_id: hj3jYIhcrgvPWTpnFoHWLPx57t6KKqhA
display: true
logo: netlify.png
name: Netlify
op: auth0
url: https://api.netlify.com/saml/mozilla-it/init
vanity_url:
- /netlify
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
authorized_users: []
display: true
logo: accountmanager.png
name: Account Portal
op: auth0
url: https://login.mozilla.com/
vanity_url:
- /accountmanager
- application:
authorized_groups:
- mozilliansorg_acoustic_production_access
authorized_users: []
client_id: sBImsybtPPLyWlstD0SC35IwnAafE4nB
display: true
logo: acoustic.png
name: Acoustic
op: auth0
url: https://auth.mozilla.auth0.com/samlp/sBImsybtPPLyWlstD0SC35IwnAafE4nB
vanity_url:
- /acoustic
- application:
authorized_groups:
- mozilliansorg_acoustic_stage_access
authorized_users: []
client_id: inoLoMyAEOzLX1cZOvubQpcW18pk4O1S
display: false
logo: auth0.png
name: Acoustic Stage
op: auth0
url: https://auth.mozilla.auth0.com/samlp/inoLoMyAEOzLX1cZOvubQpcW18pk4O1S
vanity_url:
- /acoustic_stage
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: el46s4SPK4ZOhQBsAjtiDYKFQkXK76xm
display: false
logo: adaptive_insights.png
name: Adaptive Insights
op: auth0
url: https://auth.mozilla.auth0.com/samlp/el46s4SPK4ZOhQBsAjtiDYKFQkXK76xm
vanity_url:
- /adaptive
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: 9F55B8e5VmFl4lCgYObnA1TkyRFTxQ9M
display: false
logo: adobe-sign.png
name: Adobe EchoSign
op: auth0
url: https://auth.mozilla.auth0.com/samlp/9F55B8e5VmFl4lCgYObnA1TkyRFTxQ9M
vanity_url:
- /echosign
- application:
AAL: LOW
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
- team_mozillaonline
- mozilliansorg_nda
authorized_users: []
client_id: y32eNslKsOw7cDhP6CCRGv23Zw3EYNAJ
display: true
logo: airmo.png
name: Air Mozilla
op: auth0
url: https://auth.mozilla.auth0.com/samlp/y32eNslKsOw7cDhP6CCRGv23Zw3EYNAJ
vanity_url:
- /airmo
- application:
authorized_groups:
- team_moco
authorized_users: []
client_id: xAJuHbCa1v0mPp72QMm88hYA2dFEvSy5
display: false
logo: anaplan.png
name: Anaplan
op: auth0
url: https://auth.mozilla.auth0.com/samlp/xAJuHbCa1v0mPp72QMm88hYA2dFEvSy5
vanity_url:
- /anaplan
- application:
authorized_groups:
- mozilliansorg_basket_admin
authorized_users: []
client_id: 14G95j0WAteSbDicn75gsZvRPXN6bkQm
display: true
logo: basket.png
name: Basket
op: auth0
url: https://basket-admin.us-west.moz.works/oidc/authenticate/
- application:
authorized_groups:
- mozilliansorg_basket_admin
authorized_users: []
client_id: xZsLG6eg9XjFm5vHKNi4pgE12gfpQM1p
display: true
logo: basket.png
name: Basket Dev
op: auth0
url: https://basket-dev.allizom.org/oidc/authenticate/
- application:
authorized_groups:
- mozilliansorg_basket_admin
authorized_users: []
client_id: vBgSD2axkzQ6UnC20AFTko0oRr3elwa6
display: true
logo: basket.png
name: Basket Staging
op: auth0
url: https://basket-admin-stage.us-west.moz.works/oidc/authenticate/
- application:
authorized_groups:
- service_beckon
authorized_users: []
client_id: ZtHVNezP0k2vuZnAg5zbRuFTz76vrXpZ
display: true
logo: beckon.png
name: Beckon
op: auth0
url: https://auth.mozilla.auth0.com/samlp/ZtHVNezP0k2vuZnAg5zbRuFTz76vrXpZ
vanity_url:
- /beckon
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users:
client_id: IU80mVpKPtIZyUZtya9ZnSTs6fKLt3JO
display: true
logo: biztera.png
name: Casa
op: auth0
url: https://biztera.com/mozilla
vanity_url:
- /casa
- application:
authorized_groups:
- mozilliansorg_contentful-access
authorized_users: []
client_id: i5aMJlDr5FCHEKnHTtYTb8XNmFz6h5jp
display: true
logo: contentful.png
name: Contentful
op: auth0
url: https://auth.mozilla.auth0.com/samlp/i5aMJlDr5FCHEKnHTtYTb8XNmFz6h5jp
vanity_url:
- /contentful
- application:
authorized_groups:
- mozilliansorg_deleteme-access
authorized_users: []
client_id: cAUw8lgIoNdVi2omJphonywOXpiasAbu
display: false
logo: auth0.png
name: DeleteMe
op: auth0
url: https://mozilla.joindeleteme.com/
vanity_url:
- /deleteme
- application:
AAL: LOW
authorized_groups:
- everyone
authorized_users: []
client_id: rehgg9cqVmHJbHw3jPYUzoU5BYYBH6XL
display: true
logo: discourse.png
name: Discourse
op: auth0
url: https://discourse.mozilla.org/auth/auth0
vanity_url:
- /discourse
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: 72Q4MlsbMzRo5Sij6y5JPDAiyGcyDKB2
display: false
logo: domo.png
name: Domo
op: auth0
url: https://auth.mozilla.auth0.com/samlp/72Q4MlsbMzRo5Sij6y5JPDAiyGcyDKB2
vanity_url:
- /domo
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users:
client_id: DhBV04HLs6H8OeTHOlodz0LtkyY7VTU0
display: false
logo: eventboard.png
name: EventBoard
op: auth0
url: https://auth.mozilla.auth0.com/samlp/DhBV04HLs6H8OeTHOlodz0LtkyY7VTU0
vanity_url:
- /eventboard
- application:
authorized_groups:
- mozilliansorg_everestemailsuite
authorized_users: []
client_id: 04UuoOzA5CoCWRQqKbsYc6uM1p0a4WlY
display: false
logo: auth0.png
name: Everest
op: auth0
url: https://auth.mozilla.auth0.com/samlp/04UuoOzA5CoCWRQqKbsYc6uM1p0a4WlY
vanity_url:
- /everest
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mozillajapan
- team_mozillaonline
authorized_users: []
client_id: Qxc2EI4g0NymUBvfFKpuwPdSzJZX5TEN
display: false
logo: exacttarget.png
name: Marketing Cloud
op: auth0
url: https://auth.s1.exacttarget.com/sso/f56e153c30265a772451342d7a59223f4d2c29351a2c305028757a572228
vanity_url:
- /marketingcloud
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mozillaonline
authorized_users: []
client_id: eaiAVdOLtf2KXZvexyCCViw0154E0U6x
display: true
logo: figma.png
name: Figma
op: auth0
url: https://www.figma.com/saml/887474606069541975/start
vanity_url:
- /figma
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
- team_mozillajapan
- team_mozillaonline
- travelling_accounts
- team_office_support
- gsuite_shared_accounts
- moc_service_accounts
# team_gmail_only: All three GApps entries use the same client_id, so they all must have the same access list for any of them to work, even if access is further restricted within GApps to only one of them.
- team_gmail_only
authorized_users:
client_id: smKTjsVVxUJDEkjIftOsP0bop2NWjysa
display: true
logo: gmail.png
name: Gmail
op: auth0
url: https://auth.mozilla.auth0.com/samlp/smKTjsVVxUJDEkjIftOsP0bop2NWjysa?RelayState=https://mail.google.com/
vanity_url:
- /gmail
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
- team_mozillajapan
- team_mozillaonline
- travelling_accounts
- team_office_support
- gsuite_shared_accounts
- moc_service_accounts
# team_gmail_only: All three GApps entries use the same client_id, so they all must have the same access list for any of them to work, even if access is further restricted within GApps to only one of them.
- team_gmail_only
authorized_users: []
client_id: smKTjsVVxUJDEkjIftOsP0bop2NWjysa
display: true
logo: gcal.png
name: Google Calendar
op: auth0
url: https://auth.mozilla.auth0.com/samlp/smKTjsVVxUJDEkjIftOsP0bop2NWjysa?RelayState=https://calendar.google.com/
vanity_url:
- /gcalendar
- /gcal
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
- team_mozillajapan
- team_mozillaonline
- travelling_accounts
- team_office_support
- gsuite_shared_accounts
- moc_service_accounts
# team_gmail_only: All three GApps entries use the same client_id, so they all must have the same access list for any of them to work, even if access is further restricted within GApps to only one of them.
- team_gmail_only
authorized_users: []
client_id: smKTjsVVxUJDEkjIftOsP0bop2NWjysa
display: true
logo: gdrive.png
name: Google Drive
op: auth0
url: https://auth.mozilla.auth0.com/samlp/smKTjsVVxUJDEkjIftOsP0bop2NWjysa?RelayState=https://drive.google.com/
vanity_url:
- /gdrive
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
authorized_users: []
client_id: TGlmvMW4kvEz99CRnuGnNTfxku0QNn8e
display: true
logo: greenhouse.png
name: Greenhouse
op: auth0
url: https://auth.mozilla.auth0.com/samlp/TGlmvMW4kvEz99CRnuGnNTfxku0QNn8e
vanity_url:
- /greenhouse
- application:
authorized_groups:
- mozilliansorg_heroku-members
authorized_users: []
client_id: KOyQ76xjXqtsPgt4ci4bThpIz3a1396E
display: true
logo: heroku.png
name: Heroku
op: auth0
url: https://auth.mozilla.auth0.com/samlp/KOyQ76xjXqtsPgt4ci4bThpIz3a1396E
vanity_url:
- /heroku
- application:
authorized_groups:
- service_lucidchart
- team_moco
- team_mofo
authorized_users: []
client_id: 80JNexePA737rSLhBAABqIvMJTEAn11u
display: false
logo: lucidchart.png
name: LucidChart
op: auth0
url: https://auth.mozilla.auth0.com/samlp/80JNexePA737rSLhBAABqIvMJTEAn11u
vanity_url:
- /lucidchart
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- service_jira
- moc_service_accounts
- mozilliansorg_jira_vendors
authorized_users: []
client_id: LNU9XiEHlgeU07GLt00vx4y9RR7ALsov
display: false
logo: jira.png
name: Jira - Stage
op: auth0
url: https://auth.mozilla.auth0.com/samlp/LNU9XiEHlgeU07GLt00vx4y9RR7ALsov
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
- team_mozillaonline
- team_office_support
- travelling_accounts_jira
authorized_users: []
client_id: TKqD0MP8sDeJAc9QC4f5yp2r9qbx5fcZ
display: true
logo: jira.png
name: Jira
op: auth0
url: https://mozilla-hub.atlassian.net/jira
vanity_url:
- /jira
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
- team_mozillajapan
- team_mozillaonline
- team_office_support
- moc_service_accounts
- travelling_accounts_jira
authorized_users:
client_id: TKqD0MP8sDeJAc9QC4f5yp2r9qbx5fcZ
display: true
logo: confluence.png
name: Confluence
op: auth0
url: https://mozilla-hub.atlassian.net/wiki/home
vanity_url:
- /confluence
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mozillaonline
- team_mzla
authorized_users: []
client_id: 8IhkiQO1reUO0an6e95CJ6EMBg7Lg5xQ
display: true
logo: looker.png
name: Looker
op: auth0
url: https://auth.mozilla.auth0.com/samlp/8IhkiQO1reUO0an6e95CJ6EMBg7Lg5xQ
vanity_url:
- /looker
- application:
authorized_groups:
- mozilliansorg_looker_stage_access
authorized_users: []
client_id: 1do5W84RLwLWBti921ixd3otO7t2619B
display: false
logo: auth0.png
name: Looker Stage
op: auth0
url: https://auth.mozilla.auth0.com/samlp/1do5W84RLwLWBti921ixd3otO7t2619B
vanity_url:
- /looker-stage
- application:
authorized_groups:
- mozilliansorg_looker_dev_access
- mozilliansorg_looker_dev_user_access
authorized_users: []
client_id: 5dRN6IgxPWSJrk9OQ2leoLbRDQDPCa5k
display: false
logo: auth0.png
name: Looker Dev
op: auth0
url: https://auth.mozilla.auth0.com/samlp/5dRN6IgxPWSJrk9OQ2leoLbRDQDPCa5k
vanity_url:
- /looker-dev
- application:
authorized_groups:
- everyone
authorized_users: []
display: true
logo: mdn.png
name: MDN Web Docs
op: auth0
url: https://developer.mozilla.org/
vanity_url:
- /mdn
- application:
authorized_groups:
- mozilliansorg_nucleus_admin
authorized_users: []
client_id: a6cidU6mSbciFAjy4uRQeeuFHIsLIWgg
display: true
logo: nucleus.png
name: Nucleus
op: auth0
url: https://nucleus.mozilla.org/oidc/authenticate/
- application:
authorized_groups:
- mozilliansorg_nucleus_admin
authorized_users: []
client_id: grGFAm6XbCYn3feUbyg5i9M6eyQHuhe6
display: false
logo: nucleus.png
name: Nucleus Dev
op: auth0
url: https://nucleus-dev.frankfurt.moz.works/oidc/authenticate/
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: 4HNLHcA7ZSNVWSJVBk9yVxq06WRquN2L
display: false
logo: auth0.png
name: Optimizely
op: auth0
url: https://auth.mozilla.auth0.com/samlp/4HNLHcA7ZSNVWSJVBk9yVxq06WRquN2L
vanity_url:
- /optimizely
- application:
authorized_groups:
- team_moco
- team_mofo
- everyone
authorized_users: []
client_id: Gav1XmmrpBxts0zeDPOSfGesVrTt044k
display: false
logo: pagerduty.png
name: PagerDuty
op: auth0
url: https://auth.mozilla.auth0.com/samlp/Gav1XmmrpBxts0zeDPOSfGesVrTt044k
vanity_url:
- /pagerduty
- application:
authorized_groups:
- ldapAdmins
authorized_users: []
client_id: W3SoWmYcqvP2Yms14s5VTeUFCZmBOJPT
display: true
logo: auth0.png
name: PHPLDAPAdmin
op: auth0
url: https://ldapmanager1.private.mdc1.mozilla.com/phpldapadmin/
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: DBRlLjVEUbw1yWrUYAHNYl22KBkKAjql
display: true
logo: plansource.png
name: PlanSource Benefits
op: auth0
url: https://auth.mozilla.auth0.com/samlp/DBRlLjVEUbw1yWrUYAHNYl22KBkKAjql?RelayState=https://benefits.plansource.com/sso/employee/saml2/post/d4f3574247aa2707
vanity_url:
- /plansource
- application:
authorized_groups:
- service_productplan
authorized_users: []
client_id: Ky8RbBLJ36PhlagJMT46ru6DWW8AK451
display: true
logo: productplan.png
name: ProductPlan
op: auth0
url: https://desktop.pingone.com/mozilla/url?source=application&url=https%3A%2F%2Fsso.connect.pingidentity.com%2Fsso%2Fsp%2Finitsso%3Fsaasid%3D72a035e2-0939-4685-aa8a-8c731729298b%26idpid%3Dmozilla.com&title=IDP%20Connection&applicationtype=APPLICATION_DEFAULT&saasid=72a035e2-0939-4685-aa8a-8c731729298b&newDock=true
vanity_url:
- /productplan
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: 3rbiX5U5EZZFf9tvYpOdoUxJ6A2TnH2q
display: false
logo: riskheatmap.png
name: RiskHeatMap
op: auth0
url: https://riskheatmap.security.mozilla.org/
vanity_url:
- /riskheatmap
- application:
authorized_groups:
- SecurityAssuranceOpsec
authorized_users: []
client_id: 5vVAvF2lo36Nj576GqZTTsbXzZ1AH21L
display: false
logo: riskheatmap.png
name: RiskHeatMap (Dev)
op: auth0
url: https://riskheatmap.security.allizom.org/
- application:
authorized_groups:
- team_mofo
authorized_users: []
client_id: Vnj9iPj1FJz4xTlco6XHLwM3oyRUO9iQ
display: true
logo: salescloud.png
name: MoFo Salesforce
op: auth0
url: https://auth.mozilla.auth0.com/samlp/Vnj9iPj1FJz4xTlco6XHLwM3oyRUO9iQ
vanity_url:
- /salesforcenonprofit
- application:
authorized_groups:
- mozilliansorg_pocket_dataanalytics
authorized_users: []
client_id: fTJMnRKzzEzw0nnfkLMv8lN1BaIrWBoz
display: false
logo: auth0.png
name: Snowflake
op: auth0
url: https://cka72749.us-east-1.snowflakecomputing.com/
- application:
authorized_groups:
- team_moco
- team_mofo
- everyone
authorized_users: []
client_id: Wz5oO6y8oJ35Yq1B91aC4pkwlXdes7jR
display: false
logo: auth0.png
name: support.allizom.org:admin
op: auth0
url: https://auth.mozilla.auth0.com/samlp/Wz5oO6y8oJ35Yq1B91aC4pkwlXdes7jR
- application:
AAL: LOW
authorized_groups:
- everyone
authorized_users: []
client_id: 1db5KNoLN5rLZukvLouWwVouPkbztyso
display: false
logo: taskcluster.png
name: TaskCluster
op: auth0
url: https://login.taskcluster.net
vanity_url:
- /taskcluster
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
- team_mozillajapan
- team_mozillaonline
- team_office_support
- travelling_accounts_jira
- moc_service_accounts
authorized_users:
client_id: TKqD0MP8sDeJAc9QC4f5yp2r9qbx5fcZ
display: true
logo: jsm.jpg
name: Jira Service Management
op: auth0
url: https://mozilla-hub.atlassian.net/servicedesk/customer/portals
vanity_url:
- /thehub
- /servicenow
- /jsm
- application:
AAL: LOW
authorized_groups:
- everyone
authorized_users: []
client_id: q8fZZFfGEmSB2c5uSI8hOkKdDGXnlo5z
display: true
logo: treeherder.png
name: Treeherder
op: auth0
url: https://treeherder.mozilla.org
vanity_url:
- /treeherder
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
authorized_users: []
client_id: Hypn042D0cqtqET33nRrnqOwAcIXOqx6
display: true
logo: workday.png
name: Workday
op: auth0
url: https://auth.mozilla.auth0.com/samlp/Hypn042D0cqtqET33nRrnqOwAcIXOqx6
vanity_url:
- /workday
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- everyone
authorized_users: []
client_id: kyeMyPALPK84A58vlOnb7lrCzAIFJapP
display: false
logo: workday.png
name: Workday - Preview
op: auth0
url: https://auth.mozilla.auth0.com/samlp/kyeMyPALPK84A58vlOnb7lrCzAIFJapP
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- everyone
authorized_users: []
client_id: pRwf1AWvIO5t4zyMsF8R18wtt1jfLp5o
display: false
logo: workday.png
name: Workday - Sandbox
op: auth0
url: https://auth.mozilla.auth0.com/samlp/pRwf1AWvIO5t4zyMsF8R18wtt1jfLp5o
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: meBoR5vlD0kK0qeUXshNjOB1PbGKjsro
display: false
logo: auth0.png
name: Convercent
op: auth0
url: https://auth.mozilla.auth0.com/samlp/meBoR5vlD0kK0qeUXshNjOB1PbGKjsro?RelayState=https://app.convercent.com/
vanity_url:
- /convercent
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: j8FN0DB6RwrlfLhX4opVAZ2tDYbBiMMU
display: false
logo: auth0.png
name: Convercent - Community
op: auth0
url: https://auth.mozilla.auth0.com/samlp/j8FN0DB6RwrlfLhX4opVAZ2tDYbBiMMU?RelayState=https://app.convercent.com/
vanity_url:
- /convercentcommunity
- application:
authorized_groups:
- team_moco
- team_mofo
- everyone
authorized_users: []
client_id: i55sTCbmgUTkvHPW3SDueKlKbtPj5iRF
display: false
logo: auth0.png
name: OneTrust
op: auth0
url: https://auth.mozilla.auth0.com/samlp/i55sTCbmgUTkvHPW3SDueKlKbtPj5iRF
- application:
authorized_groups:
- netops
- team_infra
- team_moc
- team_opsec
- team_avops
- team_relops
- vpn_panorama
authorized_users: []
client_id: z5zWsArYQgI63CEjMMtODh0DFtDr5oSz
display: true
logo: paloalto.png
name: Palo Alto Networks Panorama
op: auth0
url: https://panorama.mozilla.net/
- application:
authorized_groups:
- team_moco
- team_mofo
- everyone
authorized_users: []
client_id: VjJFa4EeFWd29pMnhyAk7AkGW2ids5UX
display: false
logo: auth0.png
name: Desk
op: auth0
url: https://auth.mozilla.auth0.com/samlp/VjJFa4EeFWd29pMnhyAk7AkGW2ids5UX
vanity_url:
- /desk
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: t1KWNQt71oskeip2KCu9j0KhwJJbBkig
display: false
logo: auth0.png
name: Xmatters Stage
op: auth0
url: https://auth.mozilla.auth0.com/samlp/t1KWNQt71oskeip2KCu9j0KhwJJbBkig
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: uMkOuQX8LGTxAyYIiX4eLoc4hl0pWSJt
display: false
logo: auth0.png
name: Xmatters
op: auth0
url: https://auth.mozilla.auth0.com/samlp/uMkOuQX8LGTxAyYIiX4eLoc4hl0pWSJt
- application:
authorized_groups:
- mozilliansorg_iam-admins
authorized_users: ['[email protected]']
client_id: nlE73wPPuOaN0wAYKWY6QD3VcjUStehZ
display: false
logo: auth0.png
name: IAM Grafana
op: auth0
url: https://grafana.infra.iam.mozilla.com/login/generic_oauth
vanity_url:
- /iam-grafana
- application:
authorized_groups:
- mozilliansorg_boxcom-access
- team_office_support
authorized_users:
client_id: yCKLKXrrkigZwoQ9d6xzmE5NuvVW0oBj
display: true
logo: boxcom.png
name: Box
op: auth0
url: https://auth.mozilla.auth0.com/samlp/yCKLKXrrkigZwoQ9d6xzmE5NuvVW0oBj
vanity_url:
- /box
- application:
authorized_groups:
- service_airtable
authorized_users: []
client_id: mKlNDH9c7JKO1Rh3HtGXdTtLntTlHefx
display: true
logo: airtable.png
name: AirTable
op: auth0
url: https://auth.mozilla.auth0.com/samlp/mKlNDH9c7JKO1Rh3HtGXdTtLntTlHefx
vanity_url:
- /airtable
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: ChKEapjEYTPx0T1b5QP01WhAeP8ymRJ7
display: false
logo: auth0.png
name: admin.readitlater.com
op: auth0
url: https://admin.readitlater.com
- application:
authorized_groups:
- mozilliansorg_gcp-infrastructure-production
- service_meao_gcp
authorized_users: []
client_id: uYFDijsgXulJ040Os6VJLRxf0GG30OmC
display: true
logo: gmail.png
name: GCP Infrastructure
op: auth0
url: https://auth.mozilla.auth0.com/samlp/uYFDijsgXulJ040Os6VJLRxf0GG30OmC?RelayState=https://console.cloud.google.com/
vanity_url:
- /gcp
- application:
AAL: LOW
authorized_groups:
- mozilliansorg_event-super-admins
- mozilliansorg_event-program-managers
- mozilliansorg_event-program-leads
- mozilliansorg_event-analysts
- mozilliansorg_event-event-tech
authorized_users: []
client_id: mwPj23OAUISYVlG5VxW0xI3qSY6OKMON
display: true
logo: events.jpg
name: Events
op: auth0
url: https://splashthat.com/users/oauth/1257
vanity_url:
- /events
- application:
authorized_groups:
- team_moco
- team_mofo
- team_mzla
- team_mzai
- team_mzvc
- team_mozillaonline
- travelling_accounts
- team_office_support
- zoom_non_staff
- mozilliansorg_community-zoom
authorized_users: []
client_id: TnqNECyCfoQYd1X7c4xwMF4PMsEfyWPj
display: true
logo: zoom.png
name: Zoom
op: auth0
url: https://auth.mozilla.auth0.com/samlp/TnqNECyCfoQYd1X7c4xwMF4PMsEfyWPj
vanity_url:
- /zoom
- application:
authorized_groups:
- atlassian_forge
authorized_users: []
client_id: ghFZnGJkgwTIqbs5yDn4vCnrLx3UWmaF
display: false
logo: auth0.png
name: Atlassian Forge
op: auth0
url: https://auth.mozilla.auth0.com/samlp/ghFZnGJkgwTIqbs5yDn4vCnrLx3UWmaF
- application:
authorized_groups:
- service_surveymonkey
authorized_users: []
client_id: LS57OeRbl164EPk39as1TQJ3QbiMuX5M
display: false
logo: auth0.png
name: SurveyMonkey
op: auth0
url: https://auth.mozilla.auth0.com/samlp/LS57OeRbl164EPk39as1TQJ3QbiMuX5M
vanity_url:
- /surveymonkey
- application:
authorized_groups:
- team_moco
- team_mofo
authorized_users: []
client_id: tU9fTz20E17hlFVo2DViKtDLABzVxrir
display: true
logo: alchemer.png
name: Alchemer
op: auth0
url: https://auth.mozilla.auth0.com/samlp/tU9fTz20E17hlFVo2DViKtDLABzVxrir
vanity_url:
- /alchemer
- application: