-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathh
1682 lines (1122 loc) · 45.2 KB
/
h
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
[33mcommit 069817a002d655e8f1a623609896f285a22fa1d4[m[33m ([m[1;36mHEAD -> [m[1;32mcustomers-cluster[m[33m, [m[1;31morigin/customers-cluster[m[33m)[m
Author: ophir.h <[email protected]>
Date: Thu Sep 1 10:34:53 2022 +0300
add current user to the created cluster
[33mcommit e744d26662ad677ffaa6dec9e82491ed6a44cbbe[m
Author: ophir.h <[email protected]>
Date: Wed Aug 31 13:40:34 2022 +0300
add cleanser and current_user_module
[33mcommit 27be3c931a83e68bc003a98d706d2d903f5d208d[m
Author: ophir.h <[email protected]>
Date: Wed Aug 31 13:31:10 2022 +0300
fix inputs in the tf module
[33mcommit 0037b3f1f0de197669eeeb968b69dc6cef5ca714[m
Author: ophir.h <[email protected]>
Date: Wed Aug 31 12:00:09 2022 +0300
succeed get oidc of the cluster
[33mcommit 5a2e8f857c4b20aa09949f34c278a298966736ec[m
Author: ophir.h <[email protected]>
Date: Tue Aug 30 17:52:48 2022 +0300
succeed to pass argument to python
[33mcommit 065405c8fcd7cae0ed31ecf07639d21dda660d35[m
Author: ophir.h <[email protected]>
Date: Tue Aug 23 01:16:32 2022 +0300
arrange new module
[33mcommit 05a4209dc54568d6c9f2143f77292ec9cd494378[m[33m ([m[1;31morigin/main[m[33m, [m[1;31morigin/HEAD[m[33m, [m[1;32mmain[m[33m)[m
Author: Tomer Admon <[email protected]>
Date: Thu Aug 18 16:33:31 2022 +0300
Update vm.yaml
[33mcommit d9374c8945a4b9294a4bd459f0269e26a89ce55e[m
Author: Tomer Admon <[email protected]>
Date: Thu Aug 18 16:33:17 2022 +0300
Update java-spring.yaml
[33mcommit f3219701d02bbda024225b576e8b29e5068a23c6[m
Merge: 522e706 7529e6b
Author: Ophir Haramaty <[email protected]>
Date: Thu Aug 18 13:02:40 2022 +0300
Merge pull request #6 from QualiTorque/doc
add spec1 in spec2 docs
[33mcommit 7529e6b822a0f266eeee5488ee121dc7db212b9f[m[33m ([m[1;31morigin/doc[m[33m)[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 12:28:57 2022 +0300
add dep remarks
[33mcommit 1ff93ea72be1750bd7f3baca9d109ce72a3f0aeb[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 12:24:47 2022 +0300
add blueprint image
[33mcommit 8fcf72ea63c3b34eab3cbf4c652f53e8a59cd8ee[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 12:21:34 2022 +0300
add guacamole image
[33mcommit 4e3539a03f7e9d16a1c31513a3e63ecab922f0d2[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 12:19:05 2022 +0300
add java spring image
[33mcommit 2aad5945a0e1065e9376c3d9811c062fdbc9fda6[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 12:09:46 2022 +0300
add application image
[33mcommit 0580ebb60356c9a87303c0777d33c8c471745de4[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 11:30:35 2022 +0300
fix size
[33mcommit b3f485ea877630da12200faf4be9b7572e60df22[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 11:00:55 2022 +0300
smaller the pic
[33mcommit 6a043fb743856e6457e68ec8682304a0a5d6ab49[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 10:56:23 2022 +0300
fix new line
[33mcommit b2a598337c942376ac58c1187cef43f84ab604d1[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 10:54:53 2022 +0300
revert renaming of pics folder
[33mcommit 85fb4574c23fe5c785d7e213c2142f9ea6a5c26d[m
Author: ophir.h <[email protected]>
Date: Thu Aug 18 10:53:13 2022 +0300
add an image
[33mcommit f338a41ba6cbf7065e33c721372310d5a8e36820[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 15:02:19 2022 +0300
style app
[33mcommit 89a6681ccddc6a54f8e27de353a9d939b015c731[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 15:01:31 2022 +0300
add application details
[33mcommit a02797eed60df0f54c1f265dc4fdf863b1d027cb[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 14:56:24 2022 +0300
style
[33mcommit 1907bcebe032d20843f92463757287a8b64043aa[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 14:54:50 2022 +0300
fix lines
[33mcommit b50b67afff58dd766e25791a2ba4b4bc819e2743[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 14:52:27 2022 +0300
list infrastructure resources
[33mcommit 4d39ed1435e1ed1039c9f33252ce5ea07fc79ad3[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 14:42:34 2022 +0300
fix guacamolew ref
[33mcommit e26cc1faa955da14b679b7e024dae929c65fffc0[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 14:41:16 2022 +0300
add numbers
[33mcommit 3a4d9c8d18a0171e1ecd6df082501f0fac07d1f2[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 14:39:44 2022 +0300
add numbers
[33mcommit 62f0ef2145202527bc92f7d06b1d69fe3c680970[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 14:36:02 2022 +0300
add a readme
[33mcommit 522e706a67c746aac2d08d2e2c08311c8922f4d7[m
Author: ophir.h <[email protected]>
Date: Wed Aug 17 14:07:50 2022 +0300
make private key sensitive
[33mcommit 5ae58a46a9185473fcae7cbd9e562232080ecd8d[m
Merge: 37a28f8 ab18eeb
Author: Ophir Haramaty <[email protected]>
Date: Wed Aug 17 14:02:55 2022 +0300
Merge pull request #5 from QualiTorque/tls
generate new ssh keys automatically
[33mcommit ab18eebf1d145ab8deda319da2f7f78a5b014ade[m[33m ([m[1;31morigin/tls[m[33m)[m
Author: ophir.h <[email protected]>
Date: Tue Aug 16 20:36:25 2022 +0300
remove static keys
[33mcommit 37a28f81d3429e4f9712a33aa6f62e7e2fb0c04a[m[33m ([m[1;33mtag: tls[m[33m)[m
Author: ophir.h <[email protected]>
Date: Tue Aug 16 15:05:22 2022 +0300
use tls instead of statuc file
[33mcommit 3dd9000b3632d9e955baf19cb0bfb5c0381a56ba[m
Author: ophir.h <[email protected]>
Date: Tue Aug 16 00:49:20 2022 +0300
rename connection
[33mcommit f578f18d2aba635be8b2a02098382fccf2692354[m
Author: ophir.h <[email protected]>
Date: Tue Aug 16 00:37:47 2022 +0300
revert to amiros state
[33mcommit 6e3121bc47e2d7267a308166666b1bf755ecaadf[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 10:37:04 2022 +0300
fix guacamole params in blueprint
[33mcommit 1f8ccc2a6a8c29ce1784ba4cf65f03fee7486a94[m
Author: ophir.h <[email protected]>
Date: Tue Aug 16 00:15:37 2022 +0300
Revert "fix guacamole params in blueprint"
This reverts commit 9c96d837b5bee6fb61bc3851f0d495411e558dff.
[33mcommit 94e6e6542ee47206d506a23af38247979a1d920b[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 15:28:49 2022 +0300
refactor phase 2
[33mcommit 1814947ae10590c11bac4d573505196c5fe385fa[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 15:26:25 2022 +0300
refactor to use pem file
[33mcommit 658bb3c6367f6ccc58e7b77cd46589a06de2b589[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 12:43:58 2022 +0300
remove old blueprint
[33mcommit b0f91d2fb170729632c29449e6619c8f67981fc3[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 12:42:46 2022 +0300
refactor keys
[33mcommit 1dda43a56125ccece744219c18bd279e9e670c0c[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 12:28:19 2022 +0300
auto-generate private and public keys
[33mcommit 231f1923aa01f07355e4c0825ac2200b84e85957[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 11:27:40 2022 +0300
fix connection
[33mcommit 98e8fecf35ff6553c14e32d02cae9504f36973ad[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 11:18:24 2022 +0300
fix
[33mcommit 4f11361414a06fee271193fa9b4bc880b6a94db6[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 11:15:24 2022 +0300
rename connection
[33mcommit 127284ca7326042cff048e411a0660d815b59d58[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 10:56:09 2022 +0300
use startup_script
[33mcommit 9c96d837b5bee6fb61bc3851f0d495411e558dff[m
Author: ophir.h <[email protected]>
Date: Mon Aug 15 10:37:04 2022 +0300
fix guacamole params in blueprint
[33mcommit 6c0cd7cfd16946c87176d8041ea29b38c4012c47[m
Merge: 9cf4df9 688e8b7
Author: Amir Rashkovsky <[email protected]>
Date: Sun Aug 14 11:16:07 2022 +0300
Merge pull request #4 from QualiTorque/spec1-in-spec2
Spec1 in spec2
[33mcommit 688e8b7094eeb619bcbc437940be685955cc83ed[m[33m ([m[1;31morigin/spec1-in-spec2[m[33m)[m
Author: amiros89 <[email protected]>
Date: Sun Aug 14 11:06:34 2022 +0300
Cleanup
[33mcommit 1460f380af15e094b173f8eee995a477473cc44d[m
Author: amiros89 <[email protected]>
Date: Thu Aug 11 15:34:05 2022 +0300
add new startup script to preconfigure guacamole connection
[33mcommit 9cf4df97de27b7d073a33b6ca64d17850bac3ae3[m
Author: Amir Rashkovsky <[email protected]>
Date: Thu Aug 11 14:18:59 2022 +0300
Update configure_guacamole.py
[33mcommit 9d4366daa496dd78fffdcbc8d37a48a3eefa4b83[m
Author: Amir Rashkovsky <[email protected]>
Date: Thu Aug 11 12:26:24 2022 +0300
Update configure_guacamole.py
[33mcommit 8be09d77154fb6a8576e52735123747fdd18bf8b[m
Author: Amir Rashkovsky <[email protected]>
Date: Thu Aug 11 10:34:33 2022 +0300
Update configure_guacamole.py
[33mcommit 9612e5cb7ca95465efdfa8b715081877951dfc77[m
Author: Amir Rashkovsky <[email protected]>
Date: Thu Aug 11 10:31:17 2022 +0300
Add files via upload
[33mcommit 2bc20fc731fd66673f1468e3658e21ef9f349fbf[m
Author: amiros89 <[email protected]>
Date: Wed Aug 10 02:39:02 2022 +0300
test
[33mcommit 4e9bb92965ea01dd9439a3ab6293f87e68771492[m
Author: amiros89 <[email protected]>
Date: Wed Aug 10 02:27:16 2022 +0300
test
[33mcommit 35db68932cd6664f5b85a2916c801058510d002a[m
Author: amiros89 <[email protected]>
Date: Wed Aug 10 01:41:52 2022 +0300
test
[33mcommit 1fd992be3fcd1f744843d00e8194c9740df9a1b4[m
Author: amiros89 <[email protected]>
Date: Wed Aug 10 01:35:42 2022 +0300
test
[33mcommit 5b195a9c88a9742331618d49cd638bb4738649ea[m
Author: amiros89 <[email protected]>
Date: Wed Aug 10 01:16:57 2022 +0300
test
[33mcommit 85b5827943d309ff1774d68cf3a3b07a310258ff[m
Merge: 9cca450 212ed6e
Author: Tomer Admon <[email protected]>
Date: Tue Aug 9 17:34:38 2022 +0300
Merge pull request #3 from QualiTorque/readme
update2
[33mcommit 212ed6e57821dc7e3ea4f071b6fe52c18270bc33[m[33m ([m[1;31morigin/readme[m[33m)[m
Author: Tomer Admon <[email protected]>
Date: Tue Aug 9 17:34:06 2022 +0300
update2
[33mcommit 9cca4502592d0f8e964cd66986adb86b8855a134[m
Merge: e99ab8a d563d55
Author: Tomer Admon <[email protected]>
Date: Tue Aug 9 17:33:31 2022 +0300
Merge pull request #2 from QualiTorque/readme
update readme
[33mcommit d563d55e1fd2e095938b359bedc0d30e0d04cf99[m
Author: Tomer Admon <[email protected]>
Date: Tue Aug 9 17:33:04 2022 +0300
update readme
[33mcommit 70ecacba456ec29c07e6b564e9ee39fbba195517[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 14:10:28 2022 +0300
test
[33mcommit dbdd0d8eb6f71c8f7d6895d6e1a4ff60947a1e64[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 14:02:19 2022 +0300
test
[33mcommit 43bd26667f8eee1db01743f2a1a67779b8f3cef2[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 13:56:34 2022 +0300
test
[33mcommit 71e71687336c9270249157384823899b7a74d153[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 13:47:28 2022 +0300
test
[33mcommit 4921488d1764376fec761a4f91b6f458e99f0c7d[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 13:43:41 2022 +0300
test
[33mcommit f953d049a875df3c281b5f902747bcb9a4799628[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 13:27:17 2022 +0300
test
[33mcommit 889782a3b2417107bbac38ba55ba2610fcf9e914[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 13:24:01 2022 +0300
test
[33mcommit 0becf036714f8b9f4b8e604df2701df50218dd4c[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 13:12:32 2022 +0300
test
[33mcommit bc53f010bf7050dee749bf758dde9ffe997d7269[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 13:03:13 2022 +0300
test
[33mcommit f4b76485dd417495e6d09008b8507baf5fdcf4cd[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 12:56:48 2022 +0300
jq
[33mcommit 4563ac7371ab1d6d49e8a210fcb89a94f90f538f[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 12:50:27 2022 +0300
test
[33mcommit 3aa3029e7e027a5764aa3ff69fae1a0fa48b3fd4[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 12:40:21 2022 +0300
test
[33mcommit c421756e7dac4e00051fd09ab3a7f3448acff86a[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 12:39:05 2022 +0300
test
[33mcommit 0ebc02bb0644408a544546c3b5d9898a8639ee6d[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 12:29:28 2022 +0300
test
[33mcommit a725d1f85b7e864459d2c663e039e3fccebf16de[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 11:59:33 2022 +0300
test
[33mcommit bedc21435d139de8db1262f47c7cb20495e0b889[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 11:56:57 2022 +0300
test fix
[33mcommit dddc174326e8d2065e22dc6472988f7239a826ba[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 11:45:37 2022 +0300
test fix
[33mcommit f4ed284a48c72c95f1259fb2221a2fa844dd64a8[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 11:30:33 2022 +0300
fix
[33mcommit 057ec69c150b6f0bc29f2fb5850b5a747e0dac5d[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 11:19:16 2022 +0300
fix
[33mcommit 14a7c4c7e5e81c0a3f650b6f350a1b7b684c3beb[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 11:10:25 2022 +0300
fix
[33mcommit 6d1f2eac149c697039b364cec64615b75031e84e[m
Author: amiros89 <[email protected]>
Date: Tue Aug 9 11:00:50 2022 +0300
reformat private_key
[33mcommit d51a31d08e3e7c5f03697bd74fb13bfd7680f703[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 19:03:10 2022 +0300
fix
[33mcommit 2f78d156bd4ffc14ce027758b7422abfa9e55f9b[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 18:39:27 2022 +0300
support private key
[33mcommit 537122733a8abffe94b71280f5b599bc6112752b[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 18:17:26 2022 +0300
fix data-raw
[33mcommit 1ebe8c97fd9e1a35fe30d84e4a3158aa4b47860b[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 18:09:28 2022 +0300
add key
[33mcommit 34327bf3ab9dd862655641f255baf7d3d0576834[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 17:53:00 2022 +0300
test
[33mcommit 0754cebc934772c57d087ec151ba22a0b01784c1[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 17:46:07 2022 +0300
test
[33mcommit 0481c6f372f45912901f5367cfe68c6fc1c597d6[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 17:44:52 2022 +0300
test
[33mcommit d63f21fe3b770b6b5f0b15d23879134b13976c8c[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 17:23:37 2022 +0300
test
[33mcommit ba406731ac88afc2274d2d7d641fc0e54581d51f[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 17:00:07 2022 +0300
test
[33mcommit e052c73c105ccd7de1fc600394ed6d43edd43da4[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 16:06:43 2022 +0300
test
[33mcommit df3e05afab6a4d170040d4151a802365077cf60a[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 16:01:13 2022 +0300
try
[33mcommit 6c1c6b9030200018323193192928ae428ef253cf[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 15:32:54 2022 +0300
test
[33mcommit ff751a20a440c5b4c4a930ad49388dbfa71339ae[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 15:23:22 2022 +0300
test
[33mcommit bb4efecf491e8f1cdaf4fa910fde21843a9ebdb8[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 15:02:10 2022 +0300
fix
[33mcommit 873e4e933a2670158bee6691e774c9c44b89e5c1[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 14:43:09 2022 +0300
test
[33mcommit 59b7cdc88987aa9a420cac3527c78f4b5dacef27[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 13:02:56 2022 +0300
rest api
[33mcommit b91ff8cbfdde3c292cd90f93a2a6e851cd2c3fe9[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 11:50:22 2022 +0300
test_file
[33mcommit 3b0ac80ec8b6c2a5b417f3b9203bee64c1b102aa[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 11:24:13 2022 +0300
fix
[33mcommit daa63b405c0f8e8e46a23002e8f6bdffacd4b698[m
Author: amiros89 <[email protected]>
Date: Mon Aug 8 11:08:34 2022 +0300
fix
[33mcommit 6f0f7dc4fcd5b8202a3c9252dbf2426de07bf2cd[m
Author: amiros89 <[email protected]>
Date: Sun Aug 7 19:06:03 2022 +0300
test
[33mcommit 522ef349ce89960b3fc807db943f81ecdc308c49[m
Author: amiros89 <[email protected]>
Date: Sun Aug 7 18:50:30 2022 +0300
add connections sql
[33mcommit 7f030a4fd0e69ec8630a78e6ad836509ce0e08b8[m
Author: amiros89 <[email protected]>
Date: Sun Aug 7 18:50:07 2022 +0300
add connections sql
[33mcommit 6718b0e1be623d91c7f313c675d36e2ad6c026e3[m
Author: amiros89 <[email protected]>
Date: Sun Aug 7 14:03:12 2022 +0300
declare connection var and output
[33mcommit 087b7d443f5edcd908d2803b23e4b59fcc9ddce6[m
Author: amiros89 <[email protected]>
Date: Sun Aug 7 13:30:00 2022 +0300
test exporting env var from torque input
[33mcommit e99ab8a4b64ed4d123f9172ec3c0056a6f8a026a[m
Author: Amir Rashkovsky <[email protected]>
Date: Sun Aug 7 11:51:21 2022 +0300
Update startup_script.sh
[33mcommit 0b3b5cb8698371353ab3a9ab87e4a5dd992f03fd[m
Author: Ophir Haramaty <[email protected]>
Date: Sun Aug 7 11:23:52 2022 +0300
Update serviceaccount.yaml
[33mcommit 54a44e14034ff46c52954aee640dbff04d5f58c1[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 23:33:47 2022 +0300
add app name
[33mcommit dfa92b918f9bd97e3c560737131623ad99d3bf68[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 22:41:23 2022 +0300
remove private key froum outputs
[33mcommit d4e1fbb009fc2c06d9435c61778b483422dd8ff9[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:57:02 2022 +0300
fix application module
[33mcommit f6710b48298dbb378c5d11ef7c5b7bd42d70ab0a[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:54:47 2022 +0300
add connection outputs
[33mcommit 1027841f0011b0be0453f5ab2f1a39f350da18d3[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:45:28 2022 +0300
rename guacamole
[33mcommit 537d7d6c54cc0345f3500a5db78ed6e41a784886[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:40:02 2022 +0300
add guacamole
[33mcommit 9abc2205828a67d2aaa0175803f7cad03cfc4fb4[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:34:10 2022 +0300
fix link
[33mcommit dbae32a1923f5e9635acb7b0672f4a2339058014[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:27:57 2022 +0300
fix github path
[33mcommit 1af63e09dc1fa24370ca39989ffa7751f771f1cf[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:21:44 2022 +0300
fix link
[33mcommit 878695f3771bd8143a38a2a47f1c7fc7a2411600[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:06:44 2022 +0300
fix
[33mcommit 6d4af77b6b6853a7b3fb50aa313c34d5566efd2a[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:04:48 2022 +0300
fix
[33mcommit 8bddde3fb7c5419e6d4f8c5fcafb34d0ff992f2d[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 21:03:32 2022 +0300
add endpoint output
[33mcommit b9da276d0df1388802dd89e6df7071dc478fad82[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 20:56:55 2022 +0300
add java-spring sample
[33mcommit 22b6534debd2ab7c894a82b609ea07b392622416[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 20:49:26 2022 +0300
fix all outputs
[33mcommit 6520c3542f19d014840438380238b9ec697773e9[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 18:31:42 2022 +0300
fix guacamole
[33mcommit e1ba3dd873d4108665cd7de6c20616d05745e40d[m
Author: ophir.h <[email protected]>
Date: Sat Aug 6 16:20:32 2022 +0300
fix init script
[33mcommit 193ea7bb647e07a62cadf191f187f5f80a0d207a[m
Author: ophir.h <[email protected]>
Date: Fri Aug 5 17:49:33 2022 +0300
refactor to add path var
[33mcommit 22a31fc5acaae3183586fc5c9133ebdeb1fb7682[m
Author: ophir.h <[email protected]>
Date: Fri Aug 5 13:49:33 2022 +0300
successfully start the guacamole service!
[33mcommit c91870d109ab36ffbbbc178e5c82700053fc8879[m
Author: ophir.h <[email protected]>
Date: Fri Aug 5 10:21:21 2022 +0300
successfully installed docker-compose!
[33mcommit 9a40e09569a4a41e71305e2784aa860959ffa543[m
Author: ophir.h <[email protected]>
Date: Fri Aug 5 09:36:23 2022 +0300
successfully installed docker
[33mcommit 3d796843a5e198c8dff81ef40f3397f54d4ccd00[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 18:54:19 2022 +0300
add init mysql script
[33mcommit 64197a3ee456938eca8c063ada31ccd722365143[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 18:20:22 2022 +0300
downgrade compose file version
[33mcommit 6b7d744df1aa0b394a7b1416c71b52104757e17d[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 18:09:47 2022 +0300
fix link
[33mcommit bcb923e2024febf679fdc213296b0b216c948414[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 18:01:31 2022 +0300
set correct outputs
[33mcommit 8f150a369107b14c630edb80c39f104a285aee8f[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 15:03:08 2022 +0300
add docker-compose
[33mcommit dfcdc80990605186602126f1a26da38359e706e1[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 15:00:23 2022 +0300
fix resources place
[33mcommit 3ab5077bb4c224ab5247748bebb2e37667a3752d[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 14:58:05 2022 +0300
add docker-compose as resource
[33mcommit 7b7e2e8c8434417238c1c5d3dabe7da2c9935586[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 12:32:39 2022 +0300
use original guacamole
[33mcommit 664b26e0993aa6e53570c2fbc0995104ebda49cc[m
Author: ophir.h <[email protected]>
Date: Thu Aug 4 10:24:57 2022 +0300
add public_ip output
[33mcommit 2819ce4aba3d20e0c207cc910553d0fb3b6f6e24[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 22:35:32 2022 +0300
add guacamole compose file
[33mcommit 6a1e342de397eaa6a7e915822309fa0458f4c324[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 15:13:18 2022 +0300
set guacamole networking
[33mcommit d1f7dc9199f7a0c7fe604fa758d1bcdc0b9858be[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 13:49:30 2022 +0300
open all sandbox inside network
[33mcommit 3009c2337b2a3223833650b422c23f954a6ce3c1[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 12:00:25 2022 +0300
add inputs to vm
[33mcommit c6809186d4bf9f9615ec4096ed39291797328440[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 11:27:50 2022 +0300
fix instance name
[33mcommit a203a3c857892c2f92330571ac62a8c953fd54d7[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 11:26:40 2022 +0300
fix instance name
[33mcommit 365079dca0abcedb830859c63e167a34e28d771a[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 11:03:22 2022 +0300
create vm blueprint
[33mcommit e0adac57716c74f0fd219068c631f7045332231d[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 10:49:50 2022 +0300
add default application port
[33mcommit a51e1d04c7822fc400c8c4b2890538b4cc182028[m
Author: ophir.h <[email protected]>
Date: Tue Aug 2 10:12:09 2022 +0300
refactor and secure sandbox application
[33mcommit e6dabb0de02d7bafe9a83cc621b15f0d41833d5e[m
Merge: d8a4b65 7a49130
Author: ophir.h <[email protected]>
Date: Mon Aug 1 18:38:59 2022 +0300
Merge branch 'main' of https://github.com/QualiTorque/TFSamples
[33mcommit d8a4b650dde8786fd40445f8161551c5e3e3e09a[m
Author: ophir.h <[email protected]>
Date: Mon Aug 1 18:38:50 2022 +0300
rename
[33mcommit 7a4913005fdfd0adafdd3ef6c3642a599967f0cf[m
Author: Ophir Haramaty <[email protected]>
Date: Mon Aug 1 18:26:32 2022 +0300
Rename security_groups.tf to security_group.tf
[33mcommit 8c6b2c84498c8c17e5fe399c7e5a1e2c9fa2492e[m
Author: ophir.h <[email protected]>
Date: Mon Aug 1 18:21:36 2022 +0300
fix readme
[33mcommit 0c14dac0e9498f3c2f0c786ea1b6631a27bc741f[m
Author: ophir.h <[email protected]>
Date: Mon Aug 1 18:21:02 2022 +0300
add readme
[33mcommit ca129067c6f9ba8eca78496adeef4324773f62e8[m
Author: ophir.h <[email protected]>
Date: Mon Aug 1 18:12:01 2022 +0300
add all modules
[33mcommit 67e0b77d2814851c12d9846ba694952aa6770487[m
Author: ophir.h <[email protected]>
Date: Mon Aug 1 18:04:08 2022 +0300
add alb module
[33mcommit 479ceed6095ab04dc6b4170ce6f3544251dc5e08[m
Author: ophir.h <[email protected]>
Date: Sun Jul 31 19:40:45 2022 +0300
add guacamole terraform module
[33mcommit 45715668d43e26dcf814ad65398062baa45d0ca8[m[33m ([m[1;33mtag: working-grains[m[33m)[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 13:04:35 2022 +0300
remove unneeded input
[33mcommit 4cbd76ba3e230a8e22dada7692fedf9bfd82dfb9[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 13:01:44 2022 +0300
remove unneeded output
[33mcommit 41516a18557d0effdf11adf2217a2a9edafb11a3[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 12:58:15 2022 +0300
fix output format
[33mcommit a8e71745073b5fee5315c8eb7e86dd8b02029d1b[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 12:55:28 2022 +0300
add output
[33mcommit 7d934b316069dde8fb23255d543c2dc2ca53bc9a[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 12:40:47 2022 +0300
fix var manipulation
[33mcommit 8142f33869e8e170b7a7cb48b5b9334e1d8a5843[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 11:00:13 2022 +0300
concat just with a comma
[33mcommit af059a777f1f99fbd87ce8dfedbca75167faf59c[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 10:42:38 2022 +0300
cast in locals
[33mcommit d53db6f6ee74fbf9bb65cd9c40f90bf48b9cf4d0[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 10:33:55 2022 +0300
hack string io
[33mcommit 9ffc39fed3cb318859676149090c7c135856cb7f[m
Author: ophir.h <[email protected]>
Date: Sat Jul 30 10:28:27 2022 +0300