forked from Azure/sap-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow
12000 lines (7100 loc) · 311 KB
/
how
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 7370d551367662c3b6ec5597729b8032e8a7e9dd[m[33m ([m[1;36mHEAD -> [m[1;32mseparate-config-and-code-repos[m[33m, [m[1;31morigin/separate-config-and-code-repos[m[33m)[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 13:39:58 2022 +0200
naming
[33mcommit 784432eff5b6c03e2eb2e3ad7b7c625733093adc[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 13:37:20 2022 +0200
remove duplicates
[33mcommit bfdbdc16b00ff06b4b5c9ec2cbb52e4b9657ee7d[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 13:32:58 2022 +0200
separate remover
[33mcommit 8d08c33d55436e67b8cf793b629b2c1f17d5dcf3[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 13:08:37 2022 +0200
correct folder to pull
[33mcommit f20bf719f33a5c4be3a41aad1bcf9d87819227db[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 13:07:12 2022 +0200
don't change acccess policies out side of the terraform
[33mcommit b9a776b65df73b36bb1f7cacf5673eea5986ccea[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 12:20:20 2022 +0200
don't change acccess policies out side of the terraform
[33mcommit 584bb667afcdab6d1f683686a9ac37b3104a78b8[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 11:57:24 2022 +0200
change to spa_atuomation_path
[33mcommit 53362d3b9f59e31cef9a74c124b937d9f7023877[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 11:50:02 2022 +0200
install dos2unix befor the use of it :)
[33mcommit 0d57d7b79657e6ba00d5e75818f258784742158f[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 11:43:56 2022 +0200
add logging
[33mcommit 946dd778cf3ac917e07ae6124bef4dab50be90e7[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 11:33:27 2022 +0200
checkout config repo aswell
[33mcommit 2718acd2a0ffe405f5041dc8bec5ff0eec9826d2[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 11:31:31 2022 +0200
output full file path
[33mcommit c51cad7cf76aea3ef92e7036dc622e56b6257841[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 11:23:38 2022 +0200
use config_repo_path
[33mcommit 135806d84b8347c65de4142a296c7fc2c6fddb2a[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 11:13:22 2022 +0200
remove copy action
[33mcommit 59fcc47b20b4aea6d8ea665c8e3bd9186ff77b9a[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 10:50:47 2022 +0200
simplify the folder reference
[33mcommit 79ce29227a81c14ec29ca440f5e9b4cd95ffdf97[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 10:08:40 2022 +0200
remove second pull/chaeckout
[33mcommit 14148a7aabfd99b271143a3bfddfefaf98bbe34c[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 09:10:05 2022 +0200
Revert "reset"
This reverts commit cbb51678e8336c760a601c5447acefed10a56b0e.
[33mcommit b2a24a8fd058b2f809e457170bb31c3db3ea8b40[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 08:42:03 2022 +0200
set .sap/automation to be part of config instead of ~
[33mcommit 1d842c7e20dd17d87b30631892819f839dcf38dc[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 08:21:49 2022 +0200
use config_repo_path in the deploy_controlplane
[33mcommit cbb51678e8336c760a601c5447acefed10a56b0e[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 08:15:16 2022 +0200
reset
[33mcommit 42ed2da2f2f88db83671f48a63007b29f7403d90[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 07:55:15 2022 +0200
revert
[33mcommit c88359fc040b60e4170d17e35b43226db9eba5d1[m
Author: Erick Segaar <[email protected]>
Date: Mon Oct 10 07:32:49 2022 +0200
/config is not being used
[33mcommit 4fa3e4e6617728b419a128037f4b58e20eec9a99[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 16:00:58 2022 +0200
.
[33mcommit e5b50898ca056e974c531b7b8b65f6d93aa1a0ac[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 15:56:06 2022 +0200
checkout the correct folder
[33mcommit 868eabc8b5eea067618e96659463f8d5859a8a94[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 15:26:59 2022 +0200
back to full script
[33mcommit 7d5124ecef411812471b0e93de5ad1a879ab84cf[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 15:20:20 2022 +0200
.
[33mcommit 44fe6bbdaddbf58304378773cddffbce807dfd70[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 15:16:58 2022 +0200
log
[33mcommit d95b35089b176616c3d45b0ea0c6de906b40e45c[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 15:13:56 2022 +0200
test git stuff
[33mcommit c85228aa39d7e19bfa4be109db65e32243824548[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 14:46:42 2022 +0200
do full pull
[33mcommit 5e632e5bf3d46bf5552f070fcd08df428fa28c06[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 14:26:45 2022 +0200
eneble checkout
[33mcommit d4693f6e49e0a51f254caa6bc6b5df77ed580250[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 13:50:35 2022 +0200
change 02 pipeline
[33mcommit 68cdb9f80c98286c046f819f47a1740a3753ff37[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 13:27:33 2022 +0200
depends back to dns
[33mcommit 1657305c67bd497b050a27de0d20cbac596aa606[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 13:16:30 2022 +0200
resolve merge commit issue
[33mcommit bca161d502d0be39373e254d006e1609d7622d3c[m
Merge: 252df88c 451c8823
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 13:08:42 2022 +0200
Merge branch 'separate-config-and-code-repos' of https://github.com/ErickSegaar/sap-automation into separate-config-and-code-repos
[33mcommit 252df88cf29afddf185b81ef25acced1657ff661[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 13:08:38 2022 +0200
remove dns label, no use for it. It breaks the dns
[33mcommit 451c8823c77418c330dfa4726c755e33b464de77[m
Merge: c2c9a931 0f6a2c6d
Author: Sander Trijssenaar <[email protected]>
Date: Thu Oct 6 12:23:04 2022 +0200
Detached head
[33mcommit c2c9a93118703712fa710e980664550abf0a2b80[m
Author: Sander Trijssenaar <[email protected]>
Date: Thu Oct 6 12:21:54 2022 +0200
Detached head check
[33mcommit 0f6a2c6d1ccc15534f6fb9d346a10a26f310e089[m
Author: Sander Trijssenaar <[email protected]>
Date: Thu Oct 6 12:16:07 2022 +0200
Check for detached head state
[33mcommit b8001a2ea1f04992dc77377f271a68a86e23f1d9[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 12:14:52 2022 +0200
add comment to explain
[33mcommit 7ba4fd80a7c93f33193c29f1e615f2567edabfce[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 11:51:45 2022 +0200
set dependency to private endpoit due to already existing dns records
[33mcommit 3430b8c8b0759784b37fca8a7bc3e3798fe7cedb[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 11:48:40 2022 +0200
revert test
[33mcommit a0db4ae952ae4d7a4532e13f46e498b4c053118d[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 11:32:47 2022 +0200
.
[33mcommit 8741d10b9b2a7e46b75cc4732bdd68fc9bf3a14c[m
Author: Sander Trijssenaar <[email protected]>
Date: Thu Oct 6 11:23:05 2022 +0200
Add HEAD: to git push
[33mcommit 8ce1083d2c1759d60c40b1636b4d265f67a85e45[m
Merge: 033cb3fc 22f4c81e
Author: Sander Trijssenaar <[email protected]>
Date: Thu Oct 6 11:22:59 2022 +0200
Merge branch 'separate-config-and-code-repos' of https://github.com/ErickSegaar/sap-automation into separate-config-and-code-repos
[33mcommit 22f4c81e8ebe28f680e8855b3eafd1c52a7c0e7d[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 11:21:28 2022 +0200
.
[33mcommit d8e3ea152fd997a448d6427243abdba8a809987c[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 11:09:24 2022 +0200
naming
[33mcommit 8b3a0f7cb559af8e9c4acc5e0f192770a9e38957[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 11:00:17 2022 +0200
separate into two waits
[33mcommit c7a5966c4ddfba714e357d6e6d46da59174778fc[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 10:45:39 2022 +0200
try with Id
[33mcommit 033cb3fc84899de7806ef64a2c5a5a5dad5fad62[m
Author: Sander Trijssenaar <[email protected]>
Date: Thu Oct 6 10:21:25 2022 +0200
Removing git commands in deployer
[33mcommit a4b456a85377d5d101f4e7d43ee74f00f2ee5455[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 10:17:11 2022 +0200
add index to depends
[33mcommit f0902c21acfd008549b52dcbc5d7a1575c707d06[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 08:08:18 2022 +0200
remove wrong argument
[33mcommit a528e0771c1db3c6d2ae4c0a70a7ce8f08939d51[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 08:00:56 2022 +0200
correct app-tier
[33mcommit 7cd046712f83b8535f1bc87812e4ba7f959efca3[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 07:50:34 2022 +0200
remove unexpected parameters
[33mcommit a14c2662346810593e04c5a3ae0b95238f170315[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 07:50:08 2022 +0200
add missing parameters
[33mcommit 71b52c154da92784a6012ce1db91b134b0ee57ac[m
Author: Erick Segaar <[email protected]>
Date: Thu Oct 6 07:37:48 2022 +0200
bug fix azurerm dnsmanagement
[33mcommit 34153f179bdd5cac606594733d559c08fe2e0b32[m
Author: Sander Trijssenaar <[email protected]>
Date: Wed Oct 5 23:38:45 2022 +0200
Fix
[33mcommit d24df609567f186da8bd35a79a40dd9a522c447a[m
Author: Sander Trijssenaar <[email protected]>
Date: Wed Oct 5 23:22:35 2022 +0200
Fix
[33mcommit 87ab267060a34f7251860497298783bfb418607c[m
Author: Sander Trijssenaar <[email protected]>
Date: Wed Oct 5 17:14:38 2022 +0200
Fix
[33mcommit 76f823c7d742182628016b187a0fb946cc665237[m
Author: Sander Trijssenaar <[email protected]>
Date: Wed Oct 5 16:39:21 2022 +0200
01-deploy-control-plane
[33mcommit 750606e115ab13f272f9ab40f7151c40dddfbee1[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 10:32:30 2022 +0200
separate automation and config paths
[33mcommit ad6b537bebec5f9c82daa8ccc7153ab68c0ca6a0[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 09:21:44 2022 +0200
use 2 different paths in script config and sap_atuomation
[33mcommit 96ef10f2c72f43557fa2427d6ddd09af53e0fe90[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 09:11:10 2022 +0200
add checkout both repos
[33mcommit e9ba285800ebb84ea54353fd518cef05ccf17550[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 08:22:28 2022 +0200
.
[33mcommit 9579cb53e7fb17987bf1514aa7a4a021a9b34ae3[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 08:21:04 2022 +0200
.
[33mcommit 3a9636b19b9813a6b55764b174217c63e5a55de8[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 08:17:53 2022 +0200
.
[33mcommit a8ba066b9426588103209115673526ed5eeb088f[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 08:12:47 2022 +0200
certain parameters are not accassible in template so need to be passed in
[33mcommit 6ec5a02c49e5c52c74950639c678acaa9c25ccf7[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 07:54:53 2022 +0200
add logging
[33mcommit 06f87bd5eb962ac61966901f320f8c4839da9f51[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 07:41:17 2022 +0200
.
[33mcommit d4ee1f06a19ac752ee2b5befb6dcb5e567ba0fed[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 07:40:06 2022 +0200
pass parameters
[33mcommit d6323738ce6c02dabc191aa8b7e21a8ea936239b[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 07:36:47 2022 +0200
use variable template
[33mcommit 7ec0def8e02d92f1073211fe57ea510096df3485[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 07:27:57 2022 +0200
move to stages
[33mcommit be4d476a69be24ec63193b0b0c55a92c62c3645d[m[33m ([m[1;31mupstream/experimental[m[33m, [m[1;32mexperimental[m[33m)[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 11:41:10 2022 +0200
make sure folder settings apply (#301)
[33mcommit 9b56f2597516c81558c1c8156be1bd3270759980[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 11:40:55 2022 +0200
make sure directories exists before execution (#302)
[33mcommit 1373bb4984f9f3836116fbe7fb327a13c97f3717[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 11:35:43 2022 +0200
add dns configration to ha resources (#299)
[33mcommit e5e45232606d8cf643e31c8f6ad850469d97e207[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 11:34:50 2022 +0200
Make sure ansible can access azure resources (#297)
* Use different az login with or without deployer configuration
* set subscription for account
* use script to provide az authentication instead of the ansible task
* consistent naming
* small conditional changes after testing
* use file to determin if we run on deployer
[33mcommit 9124aead5eb9712b67fba57b80f9a11f04fe0736[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 11:33:31 2022 +0200
🐛Ensure jmespath exists (#294)
* ensure jmespath exist for ansible in the correct context
* Update deploy/ansible/playbook_00_validate_parameters.yaml
Co-authored-by: Kimmo Forss <[email protected]>
* Update deploy/ansible/playbook_02_os_sap_specific_config.yaml
Co-authored-by: Kimmo Forss <[email protected]>
* Update playbook_01_os_base_config.yaml
Co-authored-by: Kimmo Forss <[email protected]>
[33mcommit 99fd804c006e4a3dc560e9b07f2efbed33109ff8[m
Author: Erick Segaar <[email protected]>
Date: Wed Oct 5 11:32:38 2022 +0200
Preserve statefile onerror (#298)
* if init fails stop with removal
* stop pipeline if remover.sh returns with error
[33mcommit d191aa825546691cca7acc230f070c1d535f7878[m
Merge: b85f0d0e 3bc1fc62
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 27 12:35:21 2022 +0200
Merge commit '3bc1fc6236c7249b44179d816b7fe66bc646ed73' into experimental
[33mcommit 3bc1fc6236c7249b44179d816b7fe66bc646ed73[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 26 12:16:19 2022 +0200
Add a list of subnet IPs
[33mcommit 65cf56c28a4950932c1524361b848565551ca0b6[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 26 12:07:29 2022 +0200
IP Address lookup logic
[33mcommit 99521bd0a5912f28cc11570e8707fc58eacac77f[m
Author: Kimmo Forss <[email protected]>
Date: Sun Sep 25 17:10:07 2022 +0300
Pipeline updates
[33mcommit 336a0c7b60335fdb80ca47b07f43f3578610e8c7[m
Author: Kimmo Forss <[email protected]>
Date: Sun Sep 25 13:11:34 2022 +0300
BoM updates and variable removal
[33mcommit 2ede56d6d6d8910d295485f50e59f8efab68e481[m
Author: Kimmo Forss <[email protected]>
Date: Sun Sep 25 02:09:04 2022 +0300
RC of the code, automate the Web App deployment
[33mcommit c3b2dbc63582e4508f3d2d6dd916f030ceeca8a7[m
Author: Kimmo Forss <[email protected]>
Date: Sun Sep 25 00:09:28 2022 +0300
Final post LeveLUp updates
[33mcommit 958db2199d28e2f9043d905eb1651c3050e5073e[m
Author: Kimmo Forss <[email protected]>
Date: Fri Sep 23 13:52:04 2022 +0300
Support for spaces in project names
[33mcommit 358ec7a6a0724f12ba00389dcb6002ffda18e629[m
Author: Kimmo Forss <[email protected]>
Date: Fri Sep 23 13:50:15 2022 +0300
adding quotes
[33mcommit dc62a27d83855553925d0be63a86a9eb7a532d95[m
Author: Kimmo Forss <[email protected]>
Date: Fri Sep 23 13:32:40 2022 +0300
LevelUp updates
[33mcommit 3f5db169e775fd6d819877308e78910934c33b5c[m
Author: Jennifer Hajduk <[email protected]>
Date: Thu Sep 22 11:45:11 2022 -0700
Sdaf workshop updates (#290)
* correcting tf_version variable name and removing duplicate parameters
* added required variables to root module in terraform units
* adding the system deployment
* removing extra bracket causing error
* removed unnecessary brackets
* resolving merge conflict
* resolving merge conflict
* resolving merge conflict
* Update deploy/terraform/terraform-units/modules/sap_deployer/variables_local.tf
Co-authored-by: Kimmo Forss <[email protected]>
[33mcommit a831e8d7b4c1ed2c9d647d71b41145aeb3cd7275[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 21:44:25 2022 +0300
Workshop updates
[33mcommit fe2c245d62a3baff955c51c9834bac83673ba5a4[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 16:12:07 2022 +0300
Add a try statement to validate the zone
[33mcommit 61a0af51340c0e3e246de3394850acd5cecdf538[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 16:06:48 2022 +0300
PAT
[33mcommit 21564b02f8c9216401cfc65f2634566bc040b0e9[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 15:04:46 2022 +0300
Don't continue if not able to connect
[33mcommit a0e293675cdf0bd61c01b338e1692ed5f1140cd4[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 14:48:35 2022 +0300
Pipeline update
[33mcommit 17d4457863d22ef2b7bd1d10990edc5818b7b1d1[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 14:24:48 2022 +0300
updated login
[33mcommit 889ba90b6001f4292603648d4b6571d65af90b22[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 14:18:32 2022 +0300
login using device code
[33mcommit f70d57d1efb4db8f6a08c30e37c6d31f1e26a09f[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 13:59:01 2022 +0300
Updates
[33mcommit c89fcab6336d6dc9194ceb27facf2151b55527b2[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 13:57:00 2022 +0300
Added missing pipeline
[33mcommit b85f0d0edf375aed134ab236f8baa48bd3a5766a[m
Merge: 1af15f6a 60ba96f4
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 11:42:00 2022 +0300
Merge commit '60ba96f478d7e29838a3fa60e200d3bfc9e1561d' into experimental
[33mcommit 60ba96f478d7e29838a3fa60e200d3bfc9e1561d[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 11:41:10 2022 +0300
checksum update
[33mcommit b7c46756e956096dc4b50fcf5e25e41fd2ea6b5e[m
Author: Kimmo Forss <[email protected]>
Date: Thu Sep 22 00:03:27 2022 +0300
don't recreate service connection
[33mcommit 1af15f6a5782009636ff377aa4ed1ee834e7d238[m
Merge: edcc939c b947b63c
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 23:48:31 2022 +0300
Merge commit 'b947b63c009704305dfd650a1a8eed58f81cbfc7' into experimental
[33mcommit b947b63c009704305dfd650a1a8eed58f81cbfc7[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 23:45:59 2022 +0300
Patch 7 for SOFTWARE UPDATE MANAGER 2.0
[33mcommit 6a4f7a5434509bd7d45e9efb4e46cd3443e83d92[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 23:38:20 2022 +0300
missing parameter added
[33mcommit e2a1851848ef23fcd5ff493e20ed9548343154f3[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 21:53:03 2022 +0300
wrong variable
[33mcommit 813f42b7eefe67e0ac2be2c3113472943f12f34a[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 21:40:14 2022 +0300
typo
[33mcommit 757907827644cff960a8209afe2c1384ecf60536[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 21:36:55 2022 +0300
Add sample updater pipeline (temporary)
[33mcommit 6a8fb898106b72ca2ef251f2281b165a85ee6c97[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 19:24:47 2022 +0300
verbosity
[33mcommit 290b497e126ecaf2868a52223f80c0a655582f83[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 19:22:30 2022 +0300
whitespace
[33mcommit 2de1a92cbb61b6c3d35f3216e86d6ffcaa0a2856[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 19:13:05 2022 +0300
Pipeline update to use correct variable
[33mcommit 91925f3856ac429bd8861f7821f64ff4877107dd[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 18:30:44 2022 +0300
removed null
[33mcommit d3511583971021f762f5868f05296276342d45d5[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 18:26:06 2022 +0300
Add AZURE_CONNECTION_NAME
[33mcommit a3cfabe7be234279a5ea97ba6aa1f4ed5cda72b2[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 18:15:21 2022 +0300
Service Connection
[33mcommit e972576ab3f2dc66094734cde6d9060e2e2f3e22[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 17:55:37 2022 +0300
Run with --only-show-errors
[33mcommit eca593ca75932ecbad3e78248e890aea31910061[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 17:18:00 2022 +0300
Debugging
[33mcommit 42ce1f8425a3429afec98669a29456e1b2e41fc0[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 16:17:33 2022 +0300
URL
[33mcommit 3a41e100016365c5885bd4209d5328ad1c069340[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 16:05:00 2022 +0300
group ID
[33mcommit 2ed10e72b51a188c7529496b353f1e2206d05cbd[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 15:52:17 2022 +0300
Added organization name to all
[33mcommit 1b53894333f5b3a61535dae44d9285b7a517611a[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 15:45:21 2022 +0300
Adding the --organization parameter
[33mcommit c14415681e8558cde548b91179ff772b82fadfdc[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 15:39:27 2022 +0300
Update
[33mcommit 77a699cc250fcb72f5b383e64ceb0a9572afecb5[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 14:13:41 2022 +0300
script updates
[33mcommit 97f91be73e970ad94a936d82c3fed4dc05df64c4[m
Author: Kimmo Forss <[email protected]>
Date: Wed Sep 21 13:44:01 2022 +0300
removed the service defaults
[33mcommit 994a8908154ac97d0b73b57c2d77c79830f4ce48[m
Author: Jennifer Hajduk <[email protected]>
Date: Tue Sep 20 23:05:57 2022 -0700
correcting tf_version variable name and removing duplicate parameters (#287)
* correcting tf_version variable name and removing duplicate parameters
* added required variables to root module in terraform units
[33mcommit cc03ed6ecfa4f3014f17ced553c71fcaf1535f03[m
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 20 14:53:21 2022 +0300
Fixed the double $$ typo
[33mcommit 9add4ae37d6cb4e3534588871e2cae497dab8b89[m
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 20 14:49:32 2022 +0300
final pipeline
[33mcommit 884c4ffb0b37318c147117731bc25f5cd64b31a4[m
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 20 14:47:17 2022 +0300
Fixes for LevelUp
[33mcommit f1472918f2a0d7f16d67f5a16f744328a8b02ddc[m
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 20 13:53:04 2022 +0300
tweaks
[33mcommit b108987c06feb92bbac2763cc65638088fac8b63[m
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 20 13:45:06 2022 +0300
Debugging info
[33mcommit edcc939c2f77c0d62838ab4e0080ecfb88eea584[m
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 20 07:42:33 2022 +0300
On par with main
[33mcommit aa6edc47564dd71f63df0480f0eabb61fabdd89a[m
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 20 01:27:37 2022 +0300
Create sample deployer config pipeline automatically
[33mcommit 0ab1a6220278dc0418387f515ab30a6b28d4e5a8[m
Author: Kimmo Forss <[email protected]>
Date: Tue Sep 20 01:25:17 2022 +0300
Added sample control plane configuration create pipeline
[33mcommit e0ea3df85c111b6a59b805ad9ee6d4e4eeab961d[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 20:53:39 2022 +0300
Web App Update
[33mcommit f5fa7116923e10b0c34a439be88220e73950f2fe[m
Author: Will Sheehan <[email protected]>
Date: Mon Sep 19 10:46:06 2022 -0700
Alignment with latest Webapp changes (#286)
* Update variables_local.tf
* Windows Template update
* Add the missing sudos
* Cleanup older SWPM and SUM BOMs as they are not being used.
Update SWPM 2.0 SP12, as it has a new release. Release note #2568783 is being updated by SAP.
* Mount /usr/sap on all nodes that have the sap disk
* Web app integration
* Web app integration (#207)
* Updated the terraform objects
* Changed the snapshot visibility and the export polict
* install dotnet when auto configure deployer
* PAS Install: Restart SAPHostCtrl
* remove whitespace
* Move HANA components into ansible-input-api.yaml
* correct exe
* Update on hostcontrol
* whitespace
* optionally retrieve STATE_SUBSCRIPTION (#209)
Previously, STATE_SUBSCRIPTION would always override subscription. If STATE_SUBSCRIPTION was not set, it would still override subscription, even if it was on the command line.
* snap dotnet install bug fixes
* web app backend change from cmdb to storage acc
* cmdb additional code removal
* export connection string bug fix
* added service delegation to deployer subnet
* added webapp subnet back
* added webapp subnet to tfstate storage account
* kv syntax error fix
* dont export spn details; better error handling; updated home page
* severity issues resolved; checkbox true false; additional environment parameters
* get deployment file path dynamically
* parameterize input when getting variable group id from name
* tag support updates, appfile update overwrite, alignment with latest changes
Co-authored-by: Kimmo Forss <[email protected]>
Co-authored-by: Kimmo Forss <[email protected]>
Co-authored-by: hdamecharla <[email protected]>
Co-authored-by: Ross Sponholtz <[email protected]>
[33mcommit 580e689728bc5aa742765b0dbca6ca6f634d2e5b[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 20:03:34 2022 +0300
Setup DevOps
[33mcommit 7b13210837c2113d5ddc29d612430f3a9573762d[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 20:00:57 2022 +0300
Missing separator in Bastion name
[33mcommit 99c4d71a68d7ed6c665d5b372ad07a1de5845b0b[m
Merge: a357b86a 83c3371f
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 19:58:47 2022 +0300
Merge branch 'main' of https://github.com/Azure/sap-automation into experimental
[33mcommit 83c3371fb264fffbfc091afcb790183b5a6b5b1c[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 19:58:09 2022 +0300
Oracle update
[33mcommit 283295d8f4b2c1a5d9a3ff5246f7165956dee39e[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 19:45:46 2022 +0300
Control Plane sample updates
(cherry picked from commit a357b86a94bbf7c11e55c214aceba5fbcf3926cc)
[33mcommit a357b86a94bbf7c11e55c214aceba5fbcf3926cc[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 19:45:46 2022 +0300
Control Plane sample updates
[33mcommit b92087160f59f07a87d42a9275ff3ee1d89064f7[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 18:06:09 2022 +0300
lll
[33mcommit f9ecd07689c9da3271f8e88dcba80d303a2e25b7[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 18:00:58 2022 +0300
aa
[33mcommit 8a00e8b8e9d9494c5bee7dd9761037325f28ff02[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 17:56:40 2022 +0300
submodules
[33mcommit e35265c658a214fa79f8a8f73a0db6ac944794e6[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 16:58:58 2022 +0300
Add fixes to configure_deployer script
[33mcommit 620171d0cab8ac849e6ce85b1d17b5df6d12bbba[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 16:57:14 2022 +0300
Add devOps agent
[33mcommit 9d166ef4c6a19e1658ad273a94bdb1283ac08630[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 16:19:39 2022 +0300
Updates
[33mcommit 10e9a9ffb368533b78be630b713ed6a2c4012299[m
Author: Kimmo Forss <[email protected]>
Date: Mon Sep 19 13:56:23 2022 +0300
Add the missing $
[33mcommit 05e38c67d117e0b4915685db14a0b51f50afa0c2[m
Author: Kimmo Forss <[email protected]>
Date: Sun Sep 18 12:56:38 2022 +0300