-
Notifications
You must be signed in to change notification settings - Fork 1
/
repos.json
6241 lines (6241 loc) · 327 KB
/
repos.json
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
[
{
"id": 286564986,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY1NjQ5ODY=",
"name": "cdktf-provider-project",
"full_name": "cdktf/cdktf-provider-project",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-project",
"description": "Repository management for prebuilt cdktf providers via cdktf",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-project",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/tags",
"blobs_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/languages",
"stargazers_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/stargazers",
"contributors_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/contributors",
"subscribers_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/subscribers",
"subscription_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/subscription",
"commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/contents/{+path}",
"compare_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/merges",
"archive_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/downloads",
"issues_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/issues{/number}",
"pulls_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/labels{/name}",
"releases_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/releases{/id}",
"deployments_url": "https://api.github.com/repos/cdktf/cdktf-provider-project/deployments",
"created_at": "2020-08-10T19:46:29Z",
"updated_at": "2022-10-19T13:22:13Z",
"pushed_at": "2022-10-25T08:32:22Z",
"git_url": "git://github.com/cdktf/cdktf-provider-project.git",
"ssh_url": "git@github.com:cdktf/cdktf-provider-project.git",
"clone_url": "https://github.com/cdktf/cdktf-provider-project.git",
"svn_url": "https://github.com/cdktf/cdktf-provider-project",
"homepage": "https://cdk.tf",
"size": 1703,
"stargazers_count": 9,
"watchers_count": 9,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": false,
"has_wiki": false,
"has_pages": false,
"forks_count": 8,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 8,
"license": {
"key": "mpl-2.0",
"name": "Mozilla Public License 2.0",
"spdx_id": "MPL-2.0",
"url": "https://api.github.com/licenses/mpl-2.0",
"node_id": "MDc6TGljZW5zZTE0"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cdk",
"cdktf",
"pre-built-provider",
"provider",
"terraform",
"terraform-cdk"
],
"visibility": "public",
"forks": 8,
"open_issues": 8,
"watchers": 9,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 286573677,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY1NzM2Nzc=",
"name": "cdktf-provider-azurerm",
"full_name": "cdktf/cdktf-provider-azurerm",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-azurerm",
"description": "Prebuilt Terraform CDK (cdktf) provider for azurerm.",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/tags",
"blobs_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/languages",
"stargazers_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/stargazers",
"contributors_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/contributors",
"subscribers_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/subscribers",
"subscription_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/subscription",
"commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/contents/{+path}",
"compare_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/merges",
"archive_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/downloads",
"issues_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/issues{/number}",
"pulls_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/labels{/name}",
"releases_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/releases{/id}",
"deployments_url": "https://api.github.com/repos/cdktf/cdktf-provider-azurerm/deployments",
"created_at": "2020-08-10T20:36:02Z",
"updated_at": "2022-09-29T12:33:51Z",
"pushed_at": "2022-10-27T01:00:18Z",
"git_url": "git://github.com/cdktf/cdktf-provider-azurerm.git",
"ssh_url": "git@github.com:cdktf/cdktf-provider-azurerm.git",
"clone_url": "https://github.com/cdktf/cdktf-provider-azurerm.git",
"svn_url": "https://github.com/cdktf/cdktf-provider-azurerm",
"homepage": "https://cdk.tf",
"size": 45770,
"stargazers_count": 17,
"watchers_count": 17,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": false,
"has_wiki": false,
"has_pages": false,
"forks_count": 5,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 4,
"license": {
"key": "mpl-2.0",
"name": "Mozilla Public License 2.0",
"spdx_id": "MPL-2.0",
"url": "https://api.github.com/licenses/mpl-2.0",
"node_id": "MDc6TGljZW5zZTE0"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"azurerm",
"cdk",
"cdktf",
"pre-built-provider",
"provider",
"terraform",
"terraform-cdk"
],
"visibility": "public",
"forks": 5,
"open_issues": 4,
"watchers": 17,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 286573685,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY1NzM2ODU=",
"name": "cdktf-provider-google",
"full_name": "cdktf/cdktf-provider-google",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-google",
"description": "Prebuilt Terraform CDK (cdktf) provider for google.",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-google",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/tags",
"blobs_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/languages",
"stargazers_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/stargazers",
"contributors_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/contributors",
"subscribers_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/subscribers",
"subscription_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/subscription",
"commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/contents/{+path}",
"compare_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/merges",
"archive_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/downloads",
"issues_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/issues{/number}",
"pulls_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/labels{/name}",
"releases_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/releases{/id}",
"deployments_url": "https://api.github.com/repos/cdktf/cdktf-provider-google/deployments",
"created_at": "2020-08-10T20:36:05Z",
"updated_at": "2022-10-19T00:47:02Z",
"pushed_at": "2022-10-27T00:36:43Z",
"git_url": "git://github.com/cdktf/cdktf-provider-google.git",
"ssh_url": "git@github.com:cdktf/cdktf-provider-google.git",
"clone_url": "https://github.com/cdktf/cdktf-provider-google.git",
"svn_url": "https://github.com/cdktf/cdktf-provider-google",
"homepage": "https://cdk.tf",
"size": 30494,
"stargazers_count": 15,
"watchers_count": 15,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": false,
"has_wiki": false,
"has_pages": false,
"forks_count": 3,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 44,
"license": {
"key": "mpl-2.0",
"name": "Mozilla Public License 2.0",
"spdx_id": "MPL-2.0",
"url": "https://api.github.com/licenses/mpl-2.0",
"node_id": "MDc6TGljZW5zZTE0"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cdk",
"cdktf",
"google",
"pre-built-provider",
"provider",
"terraform",
"terraform-cdk"
],
"visibility": "public",
"forks": 3,
"open_issues": 44,
"watchers": 15,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 286573694,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY1NzM2OTQ=",
"name": "cdktf-provider-aws",
"full_name": "cdktf/cdktf-provider-aws",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-aws",
"description": "Prebuilt Terraform CDK (cdktf) provider for aws.",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-aws",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/tags",
"blobs_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/languages",
"stargazers_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/stargazers",
"contributors_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/contributors",
"subscribers_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/subscribers",
"subscription_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/subscription",
"commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/contents/{+path}",
"compare_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/merges",
"archive_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/downloads",
"issues_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/issues{/number}",
"pulls_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/labels{/name}",
"releases_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/releases{/id}",
"deployments_url": "https://api.github.com/repos/cdktf/cdktf-provider-aws/deployments",
"created_at": "2020-08-10T20:36:08Z",
"updated_at": "2022-10-26T11:21:43Z",
"pushed_at": "2022-10-27T01:20:46Z",
"git_url": "git://github.com/cdktf/cdktf-provider-aws.git",
"ssh_url": "git@github.com:cdktf/cdktf-provider-aws.git",
"clone_url": "https://github.com/cdktf/cdktf-provider-aws.git",
"svn_url": "https://github.com/cdktf/cdktf-provider-aws",
"homepage": "https://cdk.tf",
"size": 76972,
"stargazers_count": 62,
"watchers_count": 62,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": false,
"has_wiki": false,
"has_pages": false,
"forks_count": 16,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 25,
"license": {
"key": "mpl-2.0",
"name": "Mozilla Public License 2.0",
"spdx_id": "MPL-2.0",
"url": "https://api.github.com/licenses/mpl-2.0",
"node_id": "MDc6TGljZW5zZTE0"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"aws",
"cdk",
"cdktf",
"pre-built-provider",
"provider",
"terraform",
"terraform-cdk"
],
"visibility": "public",
"forks": 16,
"open_issues": 25,
"watchers": 62,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 286576702,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY1NzY3MDI=",
"name": "cdktf-provider-docker",
"full_name": "cdktf/cdktf-provider-docker",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-docker",
"description": "Prebuilt Terraform CDK (cdktf) provider for docker.",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-docker",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/tags",
"blobs_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/languages",
"stargazers_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/stargazers",
"contributors_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/contributors",
"subscribers_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/subscribers",
"subscription_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/subscription",
"commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/contents/{+path}",
"compare_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/merges",
"archive_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/downloads",
"issues_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/issues{/number}",
"pulls_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/labels{/name}",
"releases_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/releases{/id}",
"deployments_url": "https://api.github.com/repos/cdktf/cdktf-provider-docker/deployments",
"created_at": "2020-08-10T20:53:24Z",
"updated_at": "2022-09-29T12:34:51Z",
"pushed_at": "2022-10-27T00:09:47Z",
"git_url": "git://github.com/cdktf/cdktf-provider-docker.git",
"ssh_url": "git@github.com:cdktf/cdktf-provider-docker.git",
"clone_url": "https://github.com/cdktf/cdktf-provider-docker.git",
"svn_url": "https://github.com/cdktf/cdktf-provider-docker",
"homepage": "https://cdk.tf",
"size": 3996,
"stargazers_count": 9,
"watchers_count": 9,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": false,
"has_wiki": false,
"has_pages": false,
"forks_count": 2,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 8,
"license": {
"key": "mpl-2.0",
"name": "Mozilla Public License 2.0",
"spdx_id": "MPL-2.0",
"url": "https://api.github.com/licenses/mpl-2.0",
"node_id": "MDc6TGljZW5zZTE0"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cdk",
"cdktf",
"docker",
"pre-built-provider",
"provider",
"terraform",
"terraform-cdk"
],
"visibility": "public",
"forks": 2,
"open_issues": 8,
"watchers": 9,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 286576713,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY1NzY3MTM=",
"name": "cdktf-provider-kubernetes",
"full_name": "cdktf/cdktf-provider-kubernetes",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-kubernetes",
"description": "Prebuilt Terraform CDK (cdktf) provider for kubernetes.",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/tags",
"blobs_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/languages",
"stargazers_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/stargazers",
"contributors_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/contributors",
"subscribers_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/subscribers",
"subscription_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/subscription",
"commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/contents/{+path}",
"compare_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/merges",
"archive_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/downloads",
"issues_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/issues{/number}",
"pulls_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/labels{/name}",
"releases_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/releases{/id}",
"deployments_url": "https://api.github.com/repos/cdktf/cdktf-provider-kubernetes/deployments",
"created_at": "2020-08-10T20:53:27Z",
"updated_at": "2022-10-16T18:05:03Z",
"pushed_at": "2022-10-27T00:27:47Z",
"git_url": "git://github.com/cdktf/cdktf-provider-kubernetes.git",
"ssh_url": "git@github.com:cdktf/cdktf-provider-kubernetes.git",
"clone_url": "https://github.com/cdktf/cdktf-provider-kubernetes.git",
"svn_url": "https://github.com/cdktf/cdktf-provider-kubernetes",
"homepage": "https://cdk.tf",
"size": 14138,
"stargazers_count": 14,
"watchers_count": 14,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": false,
"has_wiki": false,
"has_pages": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 11,
"license": {
"key": "mpl-2.0",
"name": "Mozilla Public License 2.0",
"spdx_id": "MPL-2.0",
"url": "https://api.github.com/licenses/mpl-2.0",
"node_id": "MDc6TGljZW5zZTE0"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cdk",
"cdktf",
"kubernetes",
"pre-built-provider",
"provider",
"terraform",
"terraform-cdk"
],
"visibility": "public",
"forks": 1,
"open_issues": 11,
"watchers": 14,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 286576719,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY1NzY3MTk=",
"name": "cdktf-provider-null",
"full_name": "cdktf/cdktf-provider-null",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-null",
"description": "Prebuilt Terraform CDK (cdktf) provider for null.",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-null",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/tags",
"blobs_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/languages",
"stargazers_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/stargazers",
"contributors_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/contributors",
"subscribers_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/subscribers",
"subscription_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/subscription",
"commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/contents/{+path}",
"compare_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/merges",
"archive_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/downloads",
"issues_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/issues{/number}",
"pulls_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/labels{/name}",
"releases_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/releases{/id}",
"deployments_url": "https://api.github.com/repos/cdktf/cdktf-provider-null/deployments",
"created_at": "2020-08-10T20:53:30Z",
"updated_at": "2022-09-29T12:35:46Z",
"pushed_at": "2022-10-27T00:32:03Z",
"git_url": "git://github.com/cdktf/cdktf-provider-null.git",
"ssh_url": "git@github.com:cdktf/cdktf-provider-null.git",
"clone_url": "https://github.com/cdktf/cdktf-provider-null.git",
"svn_url": "https://github.com/cdktf/cdktf-provider-null",
"homepage": "https://cdk.tf",
"size": 2828,
"stargazers_count": 4,
"watchers_count": 4,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": false,
"has_wiki": false,
"has_pages": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 11,
"license": {
"key": "mpl-2.0",
"name": "Mozilla Public License 2.0",
"spdx_id": "MPL-2.0",
"url": "https://api.github.com/licenses/mpl-2.0",
"node_id": "MDc6TGljZW5zZTE0"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cdk",
"cdktf",
"null",
"pre-built-provider",
"provider",
"terraform",
"terraform-cdk"
],
"visibility": "public",
"forks": 1,
"open_issues": 11,
"watchers": 4,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 286576729,
"node_id": "MDEwOlJlcG9zaXRvcnkyODY1NzY3Mjk=",
"name": "cdktf-provider-github",
"full_name": "cdktf/cdktf-provider-github",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-github",
"description": "Prebuilt Terraform CDK (cdktf) provider for github.",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-github",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/tags",
"blobs_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/languages",
"stargazers_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/stargazers",
"contributors_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/contributors",
"subscribers_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/subscribers",
"subscription_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/subscription",
"commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/contents/{+path}",
"compare_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/merges",
"archive_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/downloads",
"issues_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/issues{/number}",
"pulls_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/labels{/name}",
"releases_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/releases{/id}",
"deployments_url": "https://api.github.com/repos/cdktf/cdktf-provider-github/deployments",
"created_at": "2020-08-10T20:53:33Z",
"updated_at": "2022-10-19T00:46:58Z",
"pushed_at": "2022-10-27T00:13:05Z",
"git_url": "git://github.com/cdktf/cdktf-provider-github.git",
"ssh_url": "git@github.com:cdktf/cdktf-provider-github.git",
"clone_url": "https://github.com/cdktf/cdktf-provider-github.git",
"svn_url": "https://github.com/cdktf/cdktf-provider-github",
"homepage": "https://cdk.tf",
"size": 3595,
"stargazers_count": 9,
"watchers_count": 9,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": false,
"has_wiki": false,
"has_pages": false,
"forks_count": 4,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 9,
"license": {
"key": "mpl-2.0",
"name": "Mozilla Public License 2.0",
"spdx_id": "MPL-2.0",
"url": "https://api.github.com/licenses/mpl-2.0",
"node_id": "MDc6TGljZW5zZTE0"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cdk",
"cdktf",
"github",
"pre-built-provider",
"provider",
"terraform",
"terraform-cdk"
],
"visibility": "public",
"forks": 4,
"open_issues": 9,
"watchers": 9,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 353004377,
"node_id": "MDEwOlJlcG9zaXRvcnkzNTMwMDQzNzc=",
"name": "cdktf-provider-external",
"full_name": "cdktf/cdktf-provider-external",
"private": false,
"owner": {
"login": "cdktf",
"id": 78570468,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc4NTcwNDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/78570468?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cdktf",
"html_url": "https://github.com/cdktf",
"followers_url": "https://api.github.com/users/cdktf/followers",
"following_url": "https://api.github.com/users/cdktf/following{/other_user}",
"gists_url": "https://api.github.com/users/cdktf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cdktf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cdktf/subscriptions",
"organizations_url": "https://api.github.com/users/cdktf/orgs",
"repos_url": "https://api.github.com/users/cdktf/repos",
"events_url": "https://api.github.com/users/cdktf/events{/privacy}",
"received_events_url": "https://api.github.com/users/cdktf/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cdktf/cdktf-provider-external",
"description": "Prebuilt Terraform CDK (cdktf) provider for external.",
"fork": false,
"url": "https://api.github.com/repos/cdktf/cdktf-provider-external",
"forks_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/forks",
"keys_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/teams",
"hooks_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/hooks",
"issue_events_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/issues/events{/number}",
"events_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/events",
"assignees_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/assignees{/user}",
"branches_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/branches{/branch}",
"tags_url": "https://api.github.com/repos/cdktf/cdktf-provider-external/tags",