-
Notifications
You must be signed in to change notification settings - Fork 66.8k
Expand file tree
/
Copy pathpublic-docs.yml
More file actions
5008 lines (5008 loc) · 136 KB
/
public-docs.yml
File metadata and controls
5008 lines (5008 loc) · 136 KB
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
- provider: 1Password
supportedSecret: 1Password Service Account Token
secretType: 1password_service_account_token
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Adafruit
supportedSecret: Adafruit IO Key
secretType: adafruit_io_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: true
hasExtendedMetadata: '{% ifversion ghes %}false{% else %}true{% endif %}'
base64Supported: false
isduplicate: false
- provider: Adobe
supportedSecret: Adobe Client Secret
secretType: adobe_client_secret
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Adobe
supportedSecret: Adobe Device Token
secretType: adobe_device_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Adobe
supportedSecret: Adobe PAC Token
secretType: adobe_pac_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Adobe
supportedSecret: Adobe Refresh Token
secretType: adobe_refresh_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Adobe
supportedSecret: Adobe Service Token
secretType: adobe_service_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Adobe
supportedSecret: Adobe Short-Lived Access Token
secretType: adobe_short_lived_access_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Aikido
supportedSecret: Aikido API Client Secret
secretType: aikido_api_client_secret
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Aikido
supportedSecret: Aikido CI Scanning Token
secretType: aikido_ci_scanning_token
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Airtable
supportedSecret: Airtable API Key
secretType: airtable_api_key
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Airtable
supportedSecret: Airtable Personal Access Token
secretType: airtable_personal_access_token
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: true
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Aiven
supportedSecret: Aiven Auth Token
secretType: aiven_auth_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Aiven
supportedSecret: Aiven Service Password
secretType: aiven_service_password
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Alibaba
supportedSecret: Alibaba Cloud AccessKey ID
secretType: alibaba_cloud_access_key_id, </br>alibaba_cloud_access_key_secret
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Amazon AWS
supportedSecret: Amazon AWS Access Key ID
secretType: aws_access_key_id, </br>aws_secret_access_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: true
hasExtendedMetadata: false
base64Supported: true
isduplicate: true
- provider: Amazon AWS
supportedSecret: Amazon AWS API Key ID
secretType: aws_api_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Amazon AWS
supportedSecret: Amazon AWS Session Token
secretType: >-
aws_secret_access_key, </br>aws_session_token,
</br>aws_temporary_access_key_id
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: true
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Anthropic
supportedSecret: Anthropic Admin API Key
secretType: anthropic_admin_api_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: true
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Anthropic
supportedSecret: Anthropic API Key
secretType: anthropic_api_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: true
hasExtendedMetadata: '{% ifversion ghes %}false{% else %}true{% endif %}'
base64Supported: true
isduplicate: true
- provider: Anthropic
supportedSecret: Anthropic Session ID
secretType: anthropic_session_id
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Apify
supportedSecret: Apify Actor Run API Token
secretType: apify_actor_run_api_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Apify
supportedSecret: Apify Actor Run Proxy Password
secretType: apify_actor_run_proxy_password
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Apify
supportedSecret: Apify API Token
secretType: apify_api_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: true
hasExtendedMetadata: '{% ifversion ghes %}false{% else %}true{% endif %}'
base64Supported: false
isduplicate: false
- provider: Apify
supportedSecret: Apify Integration API Token
secretType: apify_integration_api_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Apify
supportedSecret: Apify Proxy Password
secretType: apify_proxy_password
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Apify
supportedSecret: Apify UI Token
secretType: apify_ui_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Apify
supportedSecret: Apify Webhook Dispatch API Token
secretType: apify_webhook_dispatch_api_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Asaas
supportedSecret: Asaas API Token
secretType: asaas_api_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: false
hasValidityCheck: true
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Asana
supportedSecret: Asana Legacy Format Personal Access Token
secretType: asana_legacy_format_personal_access_token
isPublic: false
isPrivateWithGhas: true
hasPushProtection: false
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Asana
supportedSecret: Asana Personal Access Token
secretType: asana_personal_access_token
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: true
- provider: Atlassian
supportedSecret: Atlassian API Token
secretType: atlassian_api_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: true
- provider: Atlassian
supportedSecret: Atlassian JSON Web Token
secretType: atlassian_jwt
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Authress
supportedSecret: Authress Service Client Access Key
secretType: authress_service_client_access_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Active Directory Application Secret
secretType: >-
azure_active_directory_application_id,
</br>azure_active_directory_application_secret
isPublic: false
isPrivateWithGhas: true
hasPushProtection: false
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Active Directory Application Secret
secretType: azure_active_directory_application_secret
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: true
- provider: Azure
supportedSecret: Azure Active Directory User Credential
secretType: azure_active_directory_user_credential
isPublic: true
isPrivateWithGhas: true
hasPushProtection: false
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure AI Services Key
secretType: azure_ai_services_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Anomaly Detector EE Key
secretType: azure_anomaly_detector_ee_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Anomaly Detector Key
secretType: azure_anomaly_detector_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Apim Direct Management Key
secretType: azure_apim_direct_management_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Apim Gateway Key
secretType: azure_apim_gateway_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Apim Repository Key
secretType: azure_apim_repository_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion ghes %}false{% else %}true{% endif %}'
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Apim Subscription Key
secretType: azure_apim_subscription_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure App Configuration Connection String
secretType: azure_app_configuration_connection_string
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion ghes %}false{% else %}true{% endif %}'
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure App Configuration Key
secretType: azure_app_configuration_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Batch Key Identifiable
secretType: azure_batch_key_identifiable
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: true
- provider: Azure
supportedSecret: Azure Cache for Redis Access Key
secretType: azure_cache_for_redis_access_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: true
isduplicate: true
- provider: Azure
supportedSecret: Azure Cognitive Services Key
secretType: azure_cognitive_services_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Communication Services Connection String
secretType: azure_communication_services_connection_string
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion ghes %}false{% else %}true{% endif %}'
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Communication Services Key
secretType: azure_communication_services_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Computer Vision Key
secretType: azure_computer_vision_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Registry Key Identifiable
secretType: azure_container_registry_key_identifiable
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Content Moderator Key
secretType: azure_content_moderator_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Content Safety Key
secretType: azure_content_safety_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Cosmosdb Key Identifiable
secretType: azure_cosmosdb_key_identifiable
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: true
isduplicate: true
- provider: Azure
supportedSecret: Azure Custom Vision Prediction Key
secretType: azure_custom_vision_prediction_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Custom Vision Training Key
secretType: azure_custom_vision_training_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure DevOps Personal Access Token
secretType: azure_devops_personal_access_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion ghes %}false{% else %}true{% endif %}'
hasExtendedMetadata: false
base64Supported: false
isduplicate: true
- provider: Azure
supportedSecret: Azure Event Grid Key Identifiable
secretType: azure_event_grid_key_identifiable
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: true
- provider: Azure
supportedSecret: Azure Event Hub Key Identifiable
secretType: azure_event_hub_key_identifiable
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Face Key
secretType: azure_face_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Fluid Relay Key
secretType: azure_fluid_relay_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Form Recognizer Key
secretType: azure_form_recognizer_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Function Key
secretType: azure_function_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: true
isduplicate: true
- provider: Azure
supportedSecret: Azure Health Decision Support Key
secretType: azure_health_decision_support_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Health Insights Key
secretType: azure_health_insights_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Immersive Reader Key
secretType: azure_immersive_reader_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Internal All In One Key
secretType: azure_internal_all_in_one_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure IoT Device Connection String
secretType: azure_iot_device_connection_string
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion ghes %}false{% else %}true{% endif %}'
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure IoT Device Key
secretType: azure_iot_device_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure IoT Device Provisioning Key
secretType: azure_iot_device_provisioning_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure IoT Hub Connection String
secretType: azure_iot_hub_connection_string
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion ghes %}false{% else %}true{% endif %}'
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure IoT Hub Key
secretType: azure_iot_hub_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure IoT Provisioning Connection String
secretType: azure_iot_provisioning_connection_string
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion ghes %}false{% else %}true{% endif %}'
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Knowledge Key
secretType: azure_knowledge_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Logic Apps URL
secretType: azure_logic_apps_url
isPublic: true
isPrivateWithGhas: false
hasPushProtection: false
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: true
- provider: Azure
supportedSecret: Azure Luis Authoring Key
secretType: azure_luis_authoring_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Luis Key
secretType: azure_luis_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Microsoft Azure Service Management Certificate
secretType: azure_management_certificate
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Maps Key
secretType: azure_maps_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion ghes %}false{% else %}true{% endif %}'
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Metrics Advisor Key
secretType: azure_metrics_advisor_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Mixed Reality Key
secretType: azure_mixed_reality_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure ML Inference Key
secretType: azure_ml_inference_identifiable_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure ML Internal Service Principal Key
secretType: azure_ml_internal_service_principal_identifiable_key
isPublic: true
isPrivateWithGhas: false
hasPushProtection: false
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure ML Studio (classic) Web Service Key
secretType: azure_ml_web_service_classic_identifiable_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure OpenAI Key
secretType: azure_openai_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: true
isduplicate: true
- provider: Azure
supportedSecret: Azure Personalizer Key
secretType: azure_personalizer_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure QnA Maker Key
secretType: azure_qna_maker_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure QnA Maker V2 Key
secretType: azure_qna_maker_v2_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Quantum Key
secretType: azure_quantum_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Relay Key Identifiable
secretType: azure_relay_key_identifiable
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure SAS Token
secretType: azure_sas_token
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Search Admin Key
secretType: azure_search_admin_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Search Query Key
secretType: azure_search_query_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Service Bus Key Identifiable
secretType: azure_service_bus_identifiable
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure SignalR Connection String
secretType: azure_signalr_connection_string
isPublic: false
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure SignalR Key
secretType: azure_signalr_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: true
- provider: Azure
supportedSecret: Azure Speech Services Key
secretType: azure_speech_services_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: false
hasExtendedMetadata: false
base64Supported: false
isduplicate: false
- provider: Azure
supportedSecret: Azure Speech Translation Key
secretType: azure_speech_translation_key
isPublic: true
isPrivateWithGhas: true
hasPushProtection: true