-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathavs_implementation_checklist.ko.json
1482 lines (1482 loc) · 70.9 KB
/
avs_implementation_checklist.ko.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
{
"categories": [
{
"name": "계획"
},
{
"name": "인터넷"
},
{
"name": "신원"
},
{
"name": "네트워킹"
},
{
"name": "안전"
},
{
"name": "모니터링"
},
{
"name": "BCDR (비씨드르)"
},
{
"name": "기타 서비스/운영"
},
{
"name": "경영"
}
],
"items": [
{
"category": "BCDR (비씨드르)",
"description": "백업 솔루션에 대한 데이터 저장소가 vSAN 스토리지 외부에 저장되어 있는지 확인합니다. Azure 네이티브 또는 디스크 풀 지원 데이터 저장소에서either in Azure native or on a disk pool-backed datastore",
"guid": "976f32a7-30d1-6caa-c2a0-207fdc26571b",
"id": "A01.01",
"link": "https://learn.microsoft.com/azure/azure-vmware/set-up-backup-server-for-azure-vmware-solution",
"severity": "보통",
"subcategory": "백업",
"text": "vSAN은 한정된 리소스이므로 백업이 vSAN에 저장되지 않도록 합니다.",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "Microsoft 백업 서비스",
"guid": "fc8af7a1-c724-e255-c18d-4ca22a6f27f0",
"id": "A02.01",
"link": "https://docs.microsoft.com/azure/azure-vmware/set-up-backup-server-for-azure-vmware-solution",
"severity": "보통",
"subcategory": "비즈니스 연속성",
"text": "MABS를 백업 솔루션으로 사용",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "모범 사례 - 재해 복구가 아닌 백업입니다.",
"guid": "be28860f-3d29-a79a-1a0e-36f1b23b36ae",
"id": "A02.02",
"link": "Best practice to deploy backup in the same region as your AVS deployment",
"severity": "보통",
"subcategory": "비즈니스 연속성",
"text": "Azure VMware Solution 프라이빗 클라우드와 동일한 지역에 백업 솔루션 배포Deploy your backup solution in the same region as your Azure VMware Solution private cloud",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "모범 사례 - AVS를 사용할 수 없는 경우",
"guid": "4d2f79a5-4ccf-0dfc-557c-49619b99a540",
"id": "A02.03",
"link": "https://docs.microsoft.com/azure/azure-vmware/set-up-backup-server-for-azure-vmware-solution",
"severity": "보통",
"subcategory": "비즈니스 연속성",
"text": "SDDC 외부에 MABS를 네이티브 Azure IaaS로 배포하는 것이 좋습니다.",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "Azure 플랫폼에서 관리하는 VMware 구성 요소의 복원을 요청하는 프로세스가 있나요?",
"guid": "ff431c40-962c-5182-d536-0c2f0c4ce9e0",
"id": "A02.04",
"link": "Will Disaster Recovery Site Recovery, HCX Disaster Recovery, SRM or back tools be used?",
"severity": "보통",
"subcategory": "비즈니스 연속성",
"text": "지역 DR의 경우 Microsoft와 함께 에스컬레이션 프로세스",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "SRM과 HCX 비교",
"guid": "f379436d-3051-daa0-01fb-dc4e0e04d677",
"id": "A03.01",
"link": "https://docs.microsoft.com/azure/azure-vmware/disaster-recovery-using-vmware-site-recovery-manager",
"severity": "보통",
"subcategory": "재해 복구",
"text": "두 사이트가 모두 Azure VMware Solution인 경우 VMware Site Recovery Manager 사용",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "VMware 솔루션 대신 Azure로 복구",
"guid": "367f71d8-3cf6-51a0-91a5-3db3d570cc19",
"id": "A03.02",
"link": "https://docs.microsoft.com/azure/site-recovery/avs-tutorial-prepare-azure",
"severity": "보통",
"subcategory": "재해 복구",
"text": "재해 복구 기술이 네이티브 Azure IaaS인 경우 Azure Site Recovery 사용Use Azure Site Recovery when the Disaster Recovery technology is native Azure IaaS",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "가능한 한 수동 작업을 피하십시오",
"guid": "ee02ada0-1887-bb3a-b84c-423f45a09ef9",
"id": "A03.03",
"link": "https://docs.microsoft.com/azure/site-recovery/avs-tutorial-prepare-azure",
"severity": "보통",
"subcategory": "재해 복구",
"text": "재해 솔루션 중 하나와 함께 자동화된 복구 계획을 사용합니다.",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "동일한 지역에 있는 다른 모든 데이터 센터",
"guid": "0c2b74e5-9c28-780d-1df3-12d3de4aaa76",
"id": "A03.04",
"link": "https://docs.microsoft.com/azure/azure-vmware/connect-multiple-private-clouds-same-region",
"severity": "보통",
"subcategory": "재해 복구",
"text": "보조 재해 복구 환경 구성",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "지역 간에 2개의 서로 다른 주소 공간을 사용합니다(예: 다른 지역의 경우 10.0.0.0/16 및 192.168.0.0/16).",
"guid": "c2a34ec4-2933-4e6c-dc36-e20e67abbe3f",
"id": "A03.05",
"link": "https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-best-practices/plan-for-ip-addressing",
"severity": "보통",
"subcategory": "재해 복구",
"text": "각 지역에 고유한 IP 범위 할당",
"waf": "신뢰도"
},
{
"category": "BCDR (비씨드르)",
"description": "ExpressRoute Global Reach는 기본 및 보조 Azure VMware Solution 프라이빗 클라우드 간의 연결에 사용할 수 있으며, 네트워크 가상 어플라이언스를 통해 라우팅을 수행해야 하나요?",
"guid": "b44fb6ec-bfc1-3a8e-dba2-ca97f0991d2c",
"id": "A03.06",
"link": "This depends if you have multiple AVS Private Clouds. If so and they are in the same region then use AVS Interconnect. If they are in separate regions then use ExpressRoute Global Reach.",
"severity": "보통",
"subcategory": "재해 복구",
"text": "DR 지역 간 Global Reach 사용",
"waf": "신뢰도"
},
{
"category": "인터넷",
"description": "ExR Global Reach 연결은 ExR 회로에 설정되며 다른 연결은 설정되지 않습니다",
"guid": "a2c12df2-07fa-3edd-2cec-fda0b55fb952",
"id": "B01.01",
"link": "https://learn.microsoft.com/azure/azure-vmware/tutorial-expressroute-global-reach-private-cloud",
"severity": "보통",
"subcategory": "직접(vWAN 없음, H&S 없음)",
"text": "ExR 회로에 대한 글로벌 도달 범위 - Azure 리소스 없음",
"waf": "공연"
},
{
"category": "인터넷",
"description": "ExR을 사용하여 온-프레미스(기타) 위치를 Azure에 연결",
"guid": "f62ce162-ba5a-429d-674e-fafa1af5f706",
"id": "B02.01",
"link": "https://learn.microsoft.com/azure/azure-vmware/tutorial-expressroute-global-reach-private-cloud",
"severity": "보통",
"subcategory": "익스프레스라우트(ExpressT",
"text": "ExR을 사용하여 Azure에 연결",
"waf": "공연"
},
{
"category": "인터넷",
"description": "마이그레이션 평가 도구 및 타임라인을 사용하여 필요한 대역폭 결정",
"guid": "cf01c73b-1247-0a7a-740c-e1ea29bda340",
"id": "B02.02",
"link": "https://learn.microsoft.com/azure/expressroute/expressroute-introduction",
"severity": "보통",
"subcategory": "익스프레스라우트(ExpressT",
"text": "대역폭 크기 조정",
"waf": "공연"
},
{
"category": "인터넷",
"description": "방화벽을 통해 라우팅되는 트래픽, Azure로 직접 이동하는 트래픽",
"guid": "aab216ee-8941-315e-eada-c7e1f2243bd1",
"id": "B02.03",
"link": "https://learn.microsoft.com/azure/architecture/solution-ideas/articles/azure-vmware-solution-foundation-networking",
"severity": "보통",
"subcategory": "익스프레스라우트(ExpressT",
"text": "트래픽 라우팅 ",
"waf": "공연"
},
{
"category": "인터넷",
"description": "AVS - ExR 회로, 트래픽 검사 없음",
"guid": "1f956e45-f62d-5c95-3a95-3bab718907f8",
"id": "B02.04",
"link": "https://learn.microsoft.com/azure/architecture/solution-ideas/articles/azure-vmware-solution-foundation-networking",
"severity": "보통",
"subcategory": "익스프레스라우트(ExpressT",
"text": "글로벌 도달 범위 ",
"waf": "공연"
},
{
"category": "인터넷",
"description": "vNet의 이름 및 고유 주소 공간 /24 최소값",
"guid": "91f7a87b-21ac-d712-959c-8df2ba034253",
"id": "B03.01",
"link": "https://learn.microsoft.com/azure/virtual-network/quick-create-portal",
"severity": "보통",
"subcategory": "허브 & 스포크(Hub & Spoke)",
"text": "VNet 이름 & 주소 공간VNet name & address space",
"waf": "공연"
},
{
"category": "인터넷",
"description": "서브넷의 이름은 GatewaySubnet이어야 합니다.",
"guid": "58a027e2-f37f-b540-45d5-e44843aba26b",
"id": "B03.02",
"link": "https://learn.microsoft.com/azure/vpn-gateway/vpn-gateway-about-vpn-gateway-settings",
"severity": "보통",
"subcategory": "허브 & 스포크(Hub & Spoke)",
"text": "게이트웨이 서브넷",
"waf": "공연"
},
{
"category": "인터넷",
"description": "허브 게이트웨이 서브넷에 VPN 게이트웨이 만들기Create a VPN gateway on the hub Gateway subnet",
"guid": "d4806549-0913-3e79-b580-ac2d3706e65a",
"id": "B03.03",
"link": "https://learn.microsoft.com/azure/vpn-gateway/vpn-gateway-about-vpn-gateway-settings",
"severity": "보통",
"subcategory": "허브 & 스포크(Hub & Spoke)",
"text": "VPN 게이트웨이",
"waf": "공연"
},
{
"category": "인터넷",
"description": "허브 게이트웨이 서브넷에 ExR 게이트웨이를 생성합니다.",
"guid": "864d7a8b-7016-c769-a717-61af6bfb73d2",
"id": "B03.04",
"link": "https://learn.microsoft.com/azure/vpn-gateway/vpn-gateway-about-vpn-gateway-settings",
"severity": "보통",
"subcategory": "허브 & 스포크(Hub & Spoke)",
"text": "ExR 게이트웨이",
"waf": "공연"
},
{
"category": "인터넷",
"description": "인터넷 트래픽은 경로, Az 방화벽, NVA, Secure Hub, 온-프레미스 방화벽이 어떻게 되나요?",
"guid": "cc2e11b9-7911-7da1-458c-d7fcef794aad",
"id": "B04.01",
"link": "https://learn.microsoft.com/azure/azure-vmware/enable-public-internet-access",
"severity": "보통",
"subcategory": "인터넷",
"text": "송신 지점",
"waf": "공연"
},
{
"category": "인터넷",
"description": "포털을 통해 AVS, 특히 vCenter, NSX-T 및 HCX에 대한 원격 연결 허용",
"guid": "71e68ce3-982e-5e56-0191-01100ad0e66f",
"id": "B05.01",
"link": "https://learn.microsoft.com/answers/questions/171195/how-to-create-jump-server-in-azure-not-bastion-paa.html",
"severity": "보통",
"subcategory": "점프박스 & 바스티온",
"text": "AVS에 대한 원격 연결",
"waf": "공연"
},
{
"category": "인터넷",
"description": "jumpbox의 이름을 지정하고 호스팅할 서브넷을 식별합니다",
"guid": "6f8e93a2-44b1-bb1d-28a1-4d5b3c2ea857",
"id": "B05.02",
"link": "https://learn.microsoft.com/azure/bastion/tutorial-create-host-portal",
"severity": "보통",
"subcategory": "점프박스 & 바스티온",
"text": "점박스 및 Azure Bastion 구성",
"waf": "공연"
},
{
"category": "인터넷",
"description": "포털을 통해 VM에 직접 안전하고 원활한 RDP/SSH 연결을 제공합니다.",
"guid": "ba430d58-4541-085c-3641-068c00be9bc5",
"id": "B05.03",
"link": "https://learn.microsoft.com/azure/virtual-network/network-security-groups-overview",
"severity": "보통",
"subcategory": "점프박스 & 바스티온",
"text": "포털을 통한 RDP 액세스를 허용하는 보안 조치",
"waf": "공연"
},
{
"category": "인터넷",
"description": "VPN을 사용하여 Azure에 연결하여 VMware 통신(HCX)을 사용하도록 설정(권장하지 않음)",
"guid": "9988598f-2a9f-6b12-9b46-488415ceb325",
"id": "B06.01",
"link": "https://learn.microsoft.com/azure/azure-vmware/configure-site-to-site-vpn-gateway",
"severity": "보통",
"subcategory": "VPN (영문)",
"text": "VPN을 사용하여 Azure에 연결",
"waf": "공연"
},
{
"category": "인터넷",
"description": "마이그레이션 평가 도구 및 타임라인을 사용하여 필요한 대역폭 결정(예: 링크의 제3자 도구)",
"guid": "956ce5e9-a862-fe2b-a50d-a22923569357",
"id": "B06.02",
"link": "https://www.omnicalculator.com/other/data-transfer#:~:text=To%20calculate%20the%20data%20transfer%20speed%3A%201%20Download,measured%20time%20to%20find%20the%20data%20transfer%20speed.",
"severity": "보통",
"subcategory": "VPN (영문)",
"text": "대역폭 크기 조정",
"waf": "공연"
},
{
"category": "인터넷",
"description": "방화벽을 통해 라우팅되는 트래픽, Azure로 직접 이동하는 트래픽",
"guid": "e095116f-0bdc-4b51-4d71-b9e469d56f59",
"id": "B06.03",
"link": "https://learn.microsoft.com/azure/architecture/solution-ideas/articles/azure-vmware-solution-foundation-networking",
"severity": "보통",
"subcategory": "VPN (영문)",
"text": "트래픽 라우팅 ",
"waf": "공연"
},
{
"category": "인터넷",
"description": "vWAN의 이름 및 고유 주소 공간, vWAN 허브의 이름",
"guid": "4dc480ac-cecd-39c4-fdc6-680b300716ab",
"id": "B07.01",
"link": "https://learn.microsoft.com/azure/virtual-wan/virtual-wan-site-to-site-portal#openvwan",
"severity": "보통",
"subcategory": "vWAN 허브",
"text": "vWAN 이름, 허브 이름 및 주소 공간",
"waf": "공연"
},
{
"category": "인터넷",
"description": "boh 또는 적절한 연결 유형을 선택합니다.",
"guid": "51d6affd-8e02-6aea-d3d4-0baf618b3076",
"id": "B07.02",
"link": "https://learn.microsoft.com/azure/virtual-wan/virtual-wan-point-to-site-portal",
"severity": "보통",
"subcategory": "vWAN 허브",
"text": "ExR 및/또는 VPN 게이트웨이 프로비저닝",
"waf": "공연"
},
{
"category": "인터넷",
"description": "vWAN에 Azure 방화벽 추가(권장)",
"guid": "e32a4c67-3dc0-c134-1c12-52d46dcbab5b",
"id": "B07.03",
"link": "https://learn.microsoft.com/azure/virtual-wan/virtual-wan-expressroute-portal",
"severity": "보통",
"subcategory": "vWAN 허브",
"text": "보안 vWAN",
"waf": "안전"
},
{
"category": "신원",
"description": "Active Directory 또는 기타 ID 공급자 서버",
"guid": "fbc47fbf-bc96-fa93-ed5d-8c9be63cd5c3",
"id": "C01.01",
"link": "https://learn.microsoft.com/azure/azure-vmware/configure-identity-source-vcenter",
"severity": "보통",
"subcategory": "접근",
"text": "외부 ID(사용자 계정)",
"waf": "안전"
},
{
"category": "신원",
"description": "LDAPS에는 필요하지 않으며 Kerberos에는 필요합니다.",
"guid": "b5db7975-f6bb-8ba3-ee5f-e3e805887997",
"id": "C01.02",
"link": "https://learn.microsoft.com/windows-server/identity/ad-ds/plan/understanding-active-directory-site-topology",
"severity": "보통",
"subcategory": "접근",
"text": "AD 도메인을 사용하는 경우 사이트 및 서비스가 구성되었는지 확인합니다.",
"waf": "안전"
},
{
"category": "신원",
"description": "사용자에 대한 인증은 안전해야 합니다.",
"guid": "c30749c4-e2af-558c-2eb9-0b6ae84881d1",
"id": "C01.03",
"link": "https://learn.microsoft.com/azure/azure-vmware/configure-identity-source-vcenter",
"severity": "보통",
"subcategory": "접근",
"text": "ldap가 아닌 LDAPS 사용(vCenter)",
"waf": "안전"
},
{
"category": "신원",
"description": "사용자에 대한 인증은 안전해야 합니다.",
"guid": "64cb9b5c-9edd-787e-1dd8-2b2338e51635",
"id": "C01.04",
"link": "https://learn.microsoft.com/azure/azure-vmware/configure-external-identity-source-nsx-t",
"severity": "보통",
"subcategory": "접근",
"text": "LDAP가 아닌 LDAPS 사용(NSX-T)",
"waf": "안전"
},
{
"category": "신원",
"description": "CN 또는 SAN 이름(와일드카드 없음, 프라이빗 키 포함) - CER 또는 PFX 포함",
"guid": "bec285ab-037e-d629-81d1-f61dac23cd4c",
"id": "C02.01",
"link": "https://youtu.be/4jvfbsrhnEs",
"severity": "보통",
"subcategory": "안전",
"text": "LDAPS 서버에 설치된 보안 인증서 ",
"waf": "안전"
},
{
"category": "신원",
"description": "표준 Azure 역할 기반 액세스 제어Standard Azure Roles Based Access Controls",
"guid": "4ba394a2-3c33-104c-8e34-2dadaba9cc73",
"id": "C02.02",
"link": "https://learn.microsoft.com/azure/azure-vmware/concepts-identity",
"severity": "보통",
"subcategory": "안전",
"text": "Azure 역할에 적용된 RBAC",
"waf": "안전"
},
{
"category": "신원",
"description": "vCenter에서 실행 가능한 최소 액세스 지침을 충족하는 데 필요한 역할 생성",
"guid": "b04ca129-83a9-3494-7512-347dd2d766db",
"id": "C02.03",
"link": "https://learn.microsoft.com/azure/azure-vmware/concepts-identity#view-the-vcenter-server-privileges",
"severity": "보통",
"subcategory": "안전",
"text": "vCenter의 RBAC 모델",
"waf": "안전"
},
{
"category": "신원",
"description": "vCenter IdP의 CloudAdmin 계정은 긴급 계정으로만 사용됩니다(비상 계정).",
"guid": "8e477d2f-8004-3dd0-93d6-0aece9e1b2fb",
"id": "C02.04",
"link": "Best practice",
"severity": "보통",
"subcategory": "안전",
"text": "CloudAdmin 역할 사용",
"waf": "안전"
},
{
"category": "신원",
"description": "Azure Portal에서 Azure VMware Solution 리소스를 관리하는 역할의 경우(대기 권한이 허용되지 않음)",
"guid": "00e0b729-f9be-f600-8c32-5ec0e8f2ed63",
"id": "C03.01",
"link": "https://learn.microsoft.com/azure/active-directory/privileged-identity-management/pim-configure",
"severity": "보통",
"subcategory": "안전 ",
"text": "Privileged Identity Management가 구현되어 있습니까?",
"waf": "안전"
},
{
"category": "신원",
"description": "Azure VMware Solution PIM 역할의 경우",
"guid": "0842d45f-41a8-8274-1155-2f6ed554d315",
"id": "C03.02",
"link": "https://learn.microsoft.com/azure/active-directory/privileged-identity-management/pim-configure",
"severity": "보통",
"subcategory": "안전 ",
"text": "Privileged Identity Management 감사 보고가 구현되어 있습니까?",
"waf": "안전"
},
{
"category": "신원",
"description": "모범 사례, 모니터링/경고도 참조하세요.",
"guid": "915cbcd7-0640-eb7c-4162-9f33775de559",
"id": "C03.03",
"link": "Best practice",
"severity": "보통",
"subcategory": "안전 ",
"text": "CloudAdmin 계정 사용을 응급 액세스로만 제한Limit of CloudAdmin account with emergency access only",
"waf": "안전"
},
{
"category": "신원",
"description": "운영 절차",
"guid": "7effa0c0-9172-e8e4-726a-67dbea8be40a",
"id": "C03.04",
"link": "https://learn.microsoft.com/azure/azure-vmware/rotate-cloudadmin-credentials?tabs=azure-portal",
"severity": "보통",
"subcategory": "안전 ",
"text": "cloudadmin(vCenter) 및 admin(NSX) 자격 증명을 정기적으로 교체하도록 정의된 프로세스입니다",
"waf": "안전"
},
{
"category": "경영",
"description": "서버용 Azure ARC를 사용하여 Azure 네이티브 기술을 사용하여 Azure VMware Solution 실행되는 워크로드를 적절하게 제어합니다(Azure VMware Solution용 Azure ARC는 아직 사용할 수 없음).",
"guid": "8f426fd0-d73b-d398-1f6f-df0cbe262a82",
"id": "D01.01",
"link": "https://learn.microsoft.com/azure/azure-arc/vmware-vsphere/overview",
"severity": "보통",
"subcategory": "작업",
"text": "AVS VM 관리(Azure Arc)",
"waf": "작업"
},
{
"category": "경영",
"description": "Azure Policy를 사용하여 Azure 관리, 모니터링 및 보안 솔루션에서 Azure VMware Solution 워크로드 온보딩",
"guid": "11dbe773-e380-9191-1418-e886fa7a6fd0",
"id": "D01.02",
"link": "https://docs.microsoft.com/azure/governance/policy/overview",
"severity": "보통",
"subcategory": "작업",
"text": "Azure 정책",
"waf": "작업"
},
{
"category": "경영",
"description": "수동 배포의 경우 Azure VMware Solution 프라이빗 클라우드에서 우발적인 작업을 방지하기 위해 리소스 잠금을 구현하는 것이 좋습니다",
"guid": "1e59c639-9b7e-a60b-5e93-3798c1aff5db",
"id": "D01.03",
"link": "https://docs.microsoft.com/azure/azure-resource-manager/management/lock-resources?tabs=json#configure-locks",
"severity": "보통",
"subcategory": "작업",
"text": "리소스 잠금",
"waf": "작업"
},
{
"category": "경영",
"description": "수동 배포의 경우 모든 구성 및 배포를 문서화해야 합니다",
"guid": "8f2c46aa-ca1b-cad3-3ac9-213dfc0a265e",
"id": "D01.04",
"link": "Make sure to create your own runbook on the deployment of AVS.",
"severity": "보통",
"subcategory": "작업",
"text": "책 실행",
"waf": "작업"
},
{
"category": "경영",
"description": "ExR 권한 부여 키에 대해 사람이 이해할 수 있는 이름을 구현하여 키 목적/용도를 쉽게 식별할 수 있습니다.",
"guid": "86b314f9-1f1e-317a-4dfb-cf510ad4a030",
"id": "D01.05",
"link": "https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-best-practices/resource-abbreviations",
"severity": "보통",
"subcategory": "작업",
"text": "인증 키에 대한 명명 규칙",
"waf": "작업"
},
{
"category": "모니터링",
"description": "Azure VMware Solution 성능(CPU >80%, 평균 메모리>80%, vSAN >70%)에 대한 자동 경고",
"guid": "e22a2d99-eb71-7d7c-07af-6d4cdb1d4443",
"id": "E01.01",
"link": "https://docs.microsoft.com/azure/azure-vmware/configure-alerts-for-azure-vmware-solution",
"severity": "보통",
"subcategory": "경고",
"text": "중요 임계값에 대한 경고 경고 만들기 ",
"waf": "작업"
},
{
"category": "모니터링",
"description": "Azure VMware Solution 성능(CPU >80%, 평균 메모리 >80%, vSAN >70%)에 대한 자동 경고",
"guid": "6d02f159-627d-79bf-a931-fab6d947eda2",
"id": "E01.02",
"link": "https://docs.microsoft.com/azure/azure-vmware/configure-alerts-for-azure-vmware-solution",
"severity": "보통",
"subcategory": "경고",
"text": "중요한 경고 vSAN 사용량 생성",
"waf": "작업"
},
{
"category": "모니터링",
"description": "플랫폼 경고 제공(Microsoft에서 생성됨)",
"guid": "1cc97b39-2c7e-246f-6d73-789cfebfe951",
"id": "E01.03",
"link": "https://www.virtualworkloads.com/2021/04/azure-vmware-solution-azure-service-health/",
"severity": "보통",
"subcategory": "경고",
"text": "Azure Service Health 경고 및 알림에 대해 구성됨",
"waf": "작업"
},
{
"category": "모니터링",
"description": "Azure VMware Solution VM 워크로드에 대한 문서화되고 구현된 백업 정책 및 솔루션이 있는지 확인합니다.",
"guid": "0962606c-e3b4-62a9-5661-e4ffd62a4509",
"id": "E02.01",
"link": "https://docs.microsoft.com/azure/azure-vmware/set-up-backup-server-for-azure-vmware-solution",
"severity": "보통",
"subcategory": "백업",
"text": "백업 정책",
"waf": "작업"
},
{
"category": "모니터링",
"description": "새 노드를 요청하는 데 소요되는 시간을 염두에 두어야 합니다",
"guid": "4ec7ccfb-795e-897e-4a84-fd31c04eadc6",
"id": "E03.01",
"link": "https://docs.microsoft.com/azure/azure-vmware/configure-alerts-for-azure-vmware-solution",
"severity": "보통",
"subcategory": "용량",
"text": "ESXi 호스트 밀도 및 효율성에 대한 정책",
"waf": "작업"
},
{
"category": "모니터링",
"description": "Azure Cost Management를 사용할 수 있습니다 - 하나의 옵션은 AVS를 자체 구독에 넣는 것입니다. ",
"guid": "7f8f175d-13f4-5298-9e61-0bc7e9fcc279",
"id": "E04.01",
"link": "https://learn.microsoft.com/azure/cloud-adoption-framework/scenarios/azure-vmware/govern",
"severity": "보통",
"subcategory": "비용",
"text": "Azure VMware Solution에 대한 적절한 비용 관리 프로세스가 마련되어 있는지 확인 - ",
"waf": "작업"
},
{
"category": "모니터링",
"description": "핵심 Azure VMware Solution 모니터링 인사이트를 사용하도록 대시보드 만들기",
"guid": "01e689e0-7c6c-b58f-37bd-4d6b9b1b9c74",
"id": "E05.01",
"link": "https://docs.microsoft.com/azure/azure-portal/azure-portal-dashboards",
"severity": "보통",
"subcategory": "대시보드",
"text": "연결 모니터 대시보드",
"waf": "작업"
},
{
"category": "모니터링",
"description": "처리를 위해 Azure Storage 계정 또는 Azure EventHub로 보내기(Log Analytics에 직접 보류 중)",
"guid": "f9afdcc9-649d-d840-9fb5-a3c0edcc697d",
"id": "E06.01",
"link": "https://docs.microsoft.com/azure/azure-vmware/configure-vmware-syslogs",
"severity": "보통",
"subcategory": "로그 & 메트릭",
"text": "Azure VMware Solution 로깅 구성 ",
"waf": "작업"
},
{
"category": "모니터링",
"description": "온-프레미스여야 하며 사용 가능한 경우 구현해야 합니다.",
"guid": "7cbac8c3-4eda-d5d9-9bda-c6b5abba9fb6",
"id": "E06.02",
"link": "Is vROPS or vRealize Network Insight going to be used? ",
"severity": "보통",
"subcategory": "로그 & 메트릭",
"text": "vRealize Operations",
"waf": "작업"
},
{
"category": "모니터링",
"description": "Azure Log Analytics 및 Azure Monitor를 사용하여 Azure VMware Solution에서 실행되는 워크로드를 모니터링하는지 확인",
"guid": "b243521a-644d-f865-7fb6-21f9019c0dd2",
"id": "E06.03",
"link": "https://docs.microsoft.com/azure/azure-vmware/configure-vmware-syslogs",
"severity": "보통",
"subcategory": "로그 & 메트릭",
"text": "AVS VM 로깅",
"waf": "작업"
},
{
"category": "모니터링",
"description": "온-프레미스와 Azure 간의 모니터링은 '연결 모니터'를 사용하여 모니터링됩니다.",
"guid": "2ca97d91-dd36-7229-b668-01036ccc3cd3",
"id": "E07.01",
"link": "https://learn.microsoft.com/azure/network-watcher/connection-monitor-create-using-portal",
"severity": "보통",
"subcategory": "네트워크",
"text": "ExpressRoute 및/또는 VPN 연결 모니터링 ",
"waf": "작업"
},
{
"category": "모니터링",
"description": "Azure VMware Solution 백 엔드 ExpressRoute 연결을 모니터링하려면(AVS에 대한 Azure 네이티브)",
"guid": "99209143-60fe-19f0-5633-8b5671277ba5",
"id": "E07.02",
"link": "https://learn.microsoft.com/azure/network-watcher/connection-monitor-create-using-portal",
"severity": "보통",
"subcategory": "네트워크",
"text": "Azure 네이티브 리소스에서 Azure VMware Solution VM으로 모니터링Monitor from an Azure native resource to an Azure VMware Solution VM",
"waf": "작업"
},
{
"category": "모니터링",
"description": "엔드 투 엔드, 온-프레미스에서 AVS 워크로드를 모니터링하려면",
"guid": "b9e5867c-57d3-036f-fb1b-3f0a71664efe",
"id": "E07.03",
"link": "https://learn.microsoft.com/azure/network-watcher/connection-monitor-create-using-portal",
"severity": "보통",
"subcategory": "네트워크",
"text": "온-프레미스 리소스에서 Azure VMware Solution VM으로 모니터링Monitor from an on-premises resource to an Azure VMware Solution VM",
"waf": "작업"
},
{
"category": "모니터링",
"description": "Azure VMware Solution 및 Azure VMware Solution 기반 워크로드에 대한 요청 추적",
"guid": "4af7c5f7-e5e9-bedf-a8cf-314b81735962",
"id": "E08.01",
"link": "Firewall logging and alerting rules are configured (Azure Firewall or 3rd party)",
"severity": "보통",
"subcategory": "안전",
"text": "감사 및 로깅은 인바운드 인터넷에 대해 구현됩니다. ",
"waf": "작업"
},
{
"category": "모니터링",
"description": "의심스러운/악의적인 활동을 식별하기 위해 Azure VMware Solution 또는 Azure VMware Solution 기반 워크로드의 아웃바운드 인터넷 연결을 위해 구현됨",
"guid": "74be60a3-cfac-f057-eda6-3ee087e805d5",
"id": "E08.02",
"link": "https://docs.microsoft.com/azure/cloud-adoption-framework/scenarios/azure-vmware/eslz-network-topology-connectivity",
"severity": "보통",
"subcategory": "안전",
"text": "세션 모니터링 ",
"waf": "작업"
},
{
"category": "모니터링",
"description": "Azure VMware Solution에서 진단 및 메트릭 로깅 사용Enable Diagnostic and metric logging on Azure VMware Solution",
"guid": "a434b3b5-f258-0845-cd76-d7df6ef5890e",
"id": "E09.01",
"link": "https://docs.microsoft.com/azure/azure-vmware/configure-vmware-syslogs",
"severity": "보통",
"subcategory": "VM웨어",
"text": "로깅 및 진단",
"waf": "작업"
},
{
"category": "모니터링",
"description": "AVS 워크로드 모니터링(AVS의 각 VM)",
"guid": "fb00b69a-83ec-ce72-446e-6c23a0cab09a",
"id": "E10.01",
"link": "https://docs.microsoft.com/azure/azure-monitor/agents/agent-windows?tabs=setup-wizard",
"severity": "보통",
"subcategory": "VM웨어",
"text": "Azure VMware Solution 게스트 VM 워크로드에 배포된 Log Analytics 에이전트",
"waf": "작업"
},
{
"category": "네트워킹",
"description": "교통 흐름에 대한 결정",
"guid": "a1354b87-e18e-bf5c-c50b-8ddf0540e971",
"id": "F01.01",
"link": "https://learn.microsoft.com/azure/azure-vmware/concepts-hub-and-spoke",
"severity": "보통",
"subcategory": "허브 & 스포크(Hub & Spoke)",
"text": "Az Firewall 또는 제3자를 통한 북쪽/남쪽 라우팅North/South routing through Az Firewall or 3rd party ",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "AVS 워크로드 간의 E/W가 아닌 방화벽을 통해 Azure에서 Azure 트래픽으로 라우팅하기로 결정(AVS 내부)",
"guid": "29a8a499-ec31-f336-3266-0895f035e379",
"id": "F01.02",
"link": "https://learn.microsoft.com/azure/azure-vmware/concepts-hub-and-spoke",
"severity": "보통",
"subcategory": "허브 & 스포크(Hub & Spoke)",
"text": "동서부(Azure 내부)",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "Azure Route Server를 사용하는 제3자 NVA 필요 - 시나리오 2(링크 참조)Requires a 3rd party NVA with Azure Route server - Scenario 2 (see link)",
"guid": "ebd3cc3c-ac3d-4293-950d-cecd8445a523",
"id": "F01.03",
"link": "https://learn.microsoft.com/azure/cloud-adoption-framework/scenarios/azure-vmware/eslz-network-topology-connectivity",
"severity": "보통",
"subcategory": "허브 & 스포크(Hub & Spoke)",
"text": "글로벌 도달 범위가 없는 ExR",
"waf": "작업"
},
{
"category": "네트워킹",
"description": "경로 서버를 사용하는 경우 경로 서버에서 ExR 게이트웨이, 온-프레미스(ARS 제한)로 200개 이상의 경로가 전파되지 않도록 합니다. MoN을 사용할 때 중요",
"guid": "ffb5c5ca-bd89-ff1b-8b73-8a54d503d506",
"id": "F01.04",
"link": "https://learn.microsoft.com/azure/route-server/route-server-faq",
"severity": "보통",
"subcategory": "허브 & 스포크(Hub & Spoke)",
"text": "경로 서버 ",
"waf": "작업"
},
{
"category": "네트워킹",
"description": "온-프레미스, Az 방화벽, 제3자, NSX-T 공용 IP를 통해",
"guid": "a4070dad-3def-818d-e9f7-be440d10e7de",
"id": "F02.01",
"link": "https://learn.microsoft.com/azure/azure-vmware/concepts-design-public-internet-access",
"severity": "보통",
"subcategory": "인터넷",
"text": "송신 지점",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "Az Firewall, 제3자 NVA, Application Gateway, Azure Frontdoor ",
"guid": "e942c03d-beaa-3d9f-0526-9b26cd5e9937",
"id": "F02.02",
"link": "Research and choose optimal solution for each application",
"severity": "보통",
"subcategory": "인터넷",
"text": "인터넷 연결 응용 프로그램",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "경로 서버에서 ExR 게이트웨이, 온-프레미스로 200개 이상의 경로가 전파되지 않도록 합니다(ARS 제한). MoN을 사용할 때 중요",
"guid": "e778a2ec-b4d7-1d27-574c-14476b167d37",
"id": "F03.01",
"link": "https://docs.microsoft.com/azure/route-server/route-server-faq#route-server-limits",
"severity": "보통",
"subcategory": "라우팅",
"text": "경로 서버 경로 제한을 이해한 경우? ",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "(VPN Gateway, AppGW, FrontDoor, 부하 분산 장치, VM 등) (제거: Azure의 ExR/VPN Gateway 서브넷에서 사용)",
"guid": "66c97b30-81b9-139a-cc76-dd1d94aef42a",
"id": "F04.01",
"link": "https://docs.microsoft.com/azure/ddos-protection/manage-ddos-protection",
"severity": "보통",
"subcategory": "안전",
"text": "공용 IP 주소에 대한 DDoS 표준 보호가 있습니까? ",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "Azure VMware Solution, vCenter, NSX Manager 및 HCX Manager를 관리하려면",
"guid": "d43da920-4ecc-a4e9-dd45-a2986ce81d32",
"id": "F04.02",
"link": "Best practice: Bastion or 3rd party tool",
"severity": "보통",
"subcategory": "안전",
"text": "전용 PAW(Privileged Access Workstation) 사용",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "VMware 간 트래픽 검사에 NSX-T 사용",
"guid": "a2dac74f-5380-6e39-25e6-f13b99ece51f",
"id": "F05.01",
"link": "https://docs.vmware.com/en/VMware-NSX-T-Data-Center/3.2/administration/GUID-F6685367-7AA1-4771-927E-ED77727CFDA3.html",
"severity": "보통",
"subcategory": "교통 점검",
"text": "이스트 웨스트(AVS 내부)",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "E/W 및 인터넷 트래픽에 Secure Hub를 사용할지 여부 결정 - Global Reach 필요",
"guid": "3f621543-dfac-c471-54a6-7b2849b6909a",
"id": "F06.01",
"link": "https://learn.microsoft.com/azure/architecture/networking/hub-spoke-vwan-architecture",
"severity": "보통",
"subcategory": "가상 WAN",
"text": "Secure Hub(Azure Firewall 또는 제3자) 사용Use Secure Hub (Azure Firewall or 3rd party)",
"waf": "안전"
},
{
"category": "네트워킹",
"description": "AVS 워크로드 간의 E/W가 아닌 방화벽을 통해 Azure에서 Azure 트래픽으로 라우팅하기로 결정(AVS 내부)",
"guid": "d7af5670-1b39-d95d-6da2-8d660dfbe16b",
"id": "F06.02",
"link": "https://learn.microsoft.com/azure/firewall-manager/secure-cloud-network",
"severity": "보통",
"subcategory": "가상 WAN",
"text": "동서부(Azure 내부)",
"waf": "안전"
},
{
"category": "기타 서비스/운영",
"description": "자동화된 스케일 아웃을 사용하려는 경우 Azure VMware Solution을 실행하는 구독에 대해 충분한 Azure VMware Solution 할당량을 신청해야 합니다",
"guid": "7d049005-eb35-4a93-50a5-3b31a9f61161",
"id": "G01.01",
"link": "https://docs.microsoft.com/azure/azure-vmware/configure-nsx-network-components-azure-portal",
"severity": "보통",
"subcategory": "자동화된 스케일",
"text": "규모 확장 운영 계획",
"waf": "공연"
},
{
"category": "기타 서비스/운영",
"description": "자동화된 축소를 사용하려는 경우 이러한 작업을 수행하기 전에 스토리지 정책 요구 사항을 고려해야 합니다",
"guid": "7242c1de-da37-27f3-1ddd-565ccccb8ece",
"id": "G01.02",
"link": "https://docs.microsoft.com/azure/cloud-adoption-framework/scenarios/azure-vmware/eslz-platform-automation-and-devops#automated-scale",
"severity": "보통",
"subcategory": "자동화된 스케일",
"text": "운영 계획의 규모 확대",
"waf": "공연"
},
{
"category": "기타 서비스/운영",
"description": "한 번에 하나의 확장 작업만 수행할 수 있으므로(여러 클러스터가 사용되는 경우에도) 확장 작업은 항상 단일 SDDC 내에서 직렬화해야 합니다",
"guid": "3233e49e-62ce-97f3-8737-8230e771b694",
"id": "G01.03",
"link": "https://docs.microsoft.com/azure/cloud-adoption-framework/scenarios/azure-vmware/eslz-platform-automation-and-devops#automated-scale",
"severity": "보통",
"subcategory": "자동화된 스케일",
"text": "직렬화된 작업 계획 크기 조정",
"waf": "공연"
},
{
"category": "기타 서비스/운영",
"description": "아키텍처에 사용되는 3rd 파티 솔루션에 대한 크기 조정 작업 고려 및 유효성 검사(지원 여부)Consider and validate scaling operations on 3rd party solutions used in the architecture (supported or not)",
"guid": "68161d66-5707-319b-e77d-9217da892593",
"id": "G01.04",
"link": "Best practice (testing)",
"severity": "보통",
"subcategory": "자동화된 스케일",
"text": "RD 운영 계획 확장",
"waf": "공연"
},
{
"category": "기타 서비스/운영",
"description": "자동화에서 환경에 대한 스케일 인/아웃 최대 한도 정의 및 적용Define and enforce scale in/out maximum limits for your environment in the automations",
"guid": "c32cb953-e860-f204-957a-c79d61202669",
"id": "G01.05",
"link": "Operational planning - understand workload requirements",
"severity": "보통",
"subcategory": "자동화된 스케일",
"text": "최대 운영 계획 확장",
"waf": "공연"
},
{
"category": "기타 서비스/운영",
"description": "모니터링 규칙을 구현하여 자동화된 크기 조정 작업을 모니터링하고 성공 및 실패를 모니터링하여 적절한(자동화된) 응답을 활성화합니다.",
"guid": "7bd65a5e-7b5d-652d-dbea-fc6f73a42857",
"id": "G01.06",
"link": "https://docs.microsoft.com/azure/cloud-adoption-framework/scenarios/azure-vmware/eslz-management-and-monitoring",
"severity": "보통",
"subcategory": "자동화된 스케일",
"text": "크기 조정 작업 모니터링 ",
"waf": "공연"
},
{
"category": "기타 서비스/운영",
"description": "다른 Azure 네이티브 서비스를 사용할 때 Azure Private-Link를 사용하는 것이 좋습니다.",
"guid": "95e374af-8a2a-2672-7ab7-b4a1be43ada7",
"id": "G02.01",
"link": "https://learn.microsoft.com/azure/private-link/private-link-overview",
"severity": "보통",
"subcategory": "네트워킹",
"text": "프라이빗 링크",
"waf": "공연"
},
{
"category": "기타 서비스/운영",
"description": "단일 Tier-1 게이트웨이를 사용하여 NSX-T 세그먼트의 자동화된 구성을 수행하는 경우 NSX-Manager API 대신 Azure Portal API를 사용합니다",
"guid": "71eff90d-5ad7-ac60-6244-2a6f7d3c51f2",
"id": "G02.02",
"link": "Best practice",
"severity": "보통",
"subcategory": "네트워킹",
"text": "VMware VLAN 프로비저닝",
"waf": "공연"
},
{
"category": "계획",
"description": "AVS가 배포되는 지역",
"guid": "04e3a2f9-83b7-968a-1044-2811811a924b",
"id": "H01.01",
"link": "https://learn.microsoft.com/windows-server/identity/ad-ds/plan/understanding-active-directory-site-topology",
"severity": "보통",
"subcategory": "배포 전",
"text": "선택한 지역",
"waf": "신뢰도"
},
{
"category": "계획",
"description": "규제 또는 규정 준수 정책이 적용되고 있습니까?",
"guid": "e52d1615-9cc6-565c-deb6-743ed7e90f4b",
"id": "H01.02",
"link": "Internal policy or regulatory compliance",
"severity": "보통",
"subcategory": "배포 전",
"text": "선택한 지역을 준수하는 데이터 보존",
"waf": "신뢰도"
},
{
"category": "계획",
"description": "지원 블레이드를 통한 요청",
"guid": "92bd5ad6-441f-a983-7aa9-05dd669d760b",
"id": "H01.03",
"link": "https://learn.microsoft.com/azure/migrate/concepts-azure-vmware-solution-assessment-calculation",
"severity": "보통",
"subcategory": "배포 전",
"text": "제출된 AVS 호스트 수에 대한 요청 ",
"waf": "신뢰도"
},
{
"category": "계획",
"description": "배포를 위한 PG 승인",
"guid": "28370f63-1cb8-2e35-907f-c5516b6954fa",
"id": "H01.04",
"link": "Support request through portal or get help from Account Team",
"severity": "보통",
"subcategory": "배포 전",
"text": "승인된 AVS 노드 지역 및 수",
"waf": "신뢰도"
},
{