-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAST.expected
More file actions
1209 lines (1209 loc) · 50 KB
/
AST.expected
File metadata and controls
1209 lines (1209 loc) · 50 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ast
| conditions.bicep:1:1:1:39 | ParameterDeclaration |
| conditions.bicep:1:1:1:39 | ParameterDeclaration |
| conditions.bicep:1:1:1:39 | ParameterDeclaration |
| conditions.bicep:1:1:12:2 | Infrastructure |
| conditions.bicep:1:7:1:26 | enableStorageAccount |
| conditions.bicep:1:7:1:26 | enableStorageAccount |
| conditions.bicep:1:7:1:26 | enableStorageAccount |
| conditions.bicep:1:28:1:31 | Type |
| conditions.bicep:1:28:1:31 | bool |
| conditions.bicep:1:35:1:39 | false |
| conditions.bicep:1:35:1:39 | false |
| conditions.bicep:1:35:1:39 | false |
| conditions.bicep:2:1:2:54 | ParameterDeclaration |
| conditions.bicep:2:1:2:54 | ParameterDeclaration |
| conditions.bicep:2:1:2:54 | ParameterDeclaration |
| conditions.bicep:2:7:2:24 | storageAccountName |
| conditions.bicep:2:7:2:24 | storageAccountName |
| conditions.bicep:2:7:2:24 | storageAccountName |
| conditions.bicep:2:26:2:31 | Type |
| conditions.bicep:2:26:2:31 | string |
| conditions.bicep:2:35:2:54 | String |
| conditions.bicep:2:35:2:54 | String |
| conditions.bicep:2:35:2:54 | String |
| conditions.bicep:2:36:2:53 | examplestorageacct |
| conditions.bicep:4:1:12:1 | ResourceDeclaration |
| conditions.bicep:4:1:12:1 | ResourceDeclaration |
| conditions.bicep:4:1:12:1 | ResourceDeclaration |
| conditions.bicep:4:10:4:23 | storageAccount |
| conditions.bicep:4:10:4:23 | storageAccount |
| conditions.bicep:4:10:4:23 | storageAccount |
| conditions.bicep:4:25:4:70 | String |
| conditions.bicep:4:25:4:70 | String |
| conditions.bicep:4:25:4:70 | String |
| conditions.bicep:4:26:4:69 | Microsoft.Storage/storageAccounts@2022-09-01 |
| conditions.bicep:4:74:12:1 | IfStatement |
| conditions.bicep:4:77:4:98 | ParenthesizedExpression |
| conditions.bicep:4:77:4:98 | ParenthesizedExpression |
| conditions.bicep:4:77:4:98 | ParenthesizedExpression |
| conditions.bicep:4:78:4:97 | enableStorageAccount |
| conditions.bicep:4:78:4:97 | enableStorageAccount |
| conditions.bicep:4:78:4:97 | enableStorageAccount |
| conditions.bicep:4:100:12:1 | Object |
| conditions.bicep:4:100:12:1 | Object |
| conditions.bicep:4:100:12:1 | Object |
| conditions.bicep:5:3:5:6 | name |
| conditions.bicep:5:3:5:6 | name |
| conditions.bicep:5:3:5:6 | name |
| conditions.bicep:5:3:5:26 | ObjectProperty |
| conditions.bicep:5:9:5:26 | storageAccountName |
| conditions.bicep:5:9:5:26 | storageAccountName |
| conditions.bicep:5:9:5:26 | storageAccountName |
| conditions.bicep:6:3:6:10 | location |
| conditions.bicep:6:3:6:10 | location |
| conditions.bicep:6:3:6:10 | location |
| conditions.bicep:6:3:6:36 | ObjectProperty |
| conditions.bicep:6:13:6:25 | resourceGroup |
| conditions.bicep:6:13:6:25 | resourceGroup |
| conditions.bicep:6:13:6:25 | resourceGroup |
| conditions.bicep:6:13:6:27 | CallExpression |
| conditions.bicep:6:13:6:27 | CallExpression |
| conditions.bicep:6:13:6:27 | CallExpression |
| conditions.bicep:6:13:6:36 | MemberExpression |
| conditions.bicep:6:13:6:36 | MemberExpression |
| conditions.bicep:6:13:6:36 | MemberExpression |
| conditions.bicep:6:26:6:27 | Arguments |
| conditions.bicep:6:29:6:36 | location |
| conditions.bicep:7:3:7:5 | sku |
| conditions.bicep:7:3:7:5 | sku |
| conditions.bicep:7:3:7:5 | sku |
| conditions.bicep:7:3:9:3 | ObjectProperty |
| conditions.bicep:7:8:9:3 | Object |
| conditions.bicep:7:8:9:3 | Object |
| conditions.bicep:7:8:9:3 | Object |
| conditions.bicep:8:5:8:8 | name |
| conditions.bicep:8:5:8:8 | name |
| conditions.bicep:8:5:8:8 | name |
| conditions.bicep:8:5:8:24 | ObjectProperty |
| conditions.bicep:8:11:8:24 | String |
| conditions.bicep:8:11:8:24 | String |
| conditions.bicep:8:11:8:24 | String |
| conditions.bicep:8:12:8:23 | Standard_LRS |
| conditions.bicep:10:3:10:6 | kind |
| conditions.bicep:10:3:10:6 | kind |
| conditions.bicep:10:3:10:6 | kind |
| conditions.bicep:10:3:10:19 | ObjectProperty |
| conditions.bicep:10:9:10:19 | String |
| conditions.bicep:10:9:10:19 | String |
| conditions.bicep:10:9:10:19 | String |
| conditions.bicep:10:10:10:18 | StorageV2 |
| conditions.bicep:11:3:11:12 | properties |
| conditions.bicep:11:3:11:12 | properties |
| conditions.bicep:11:3:11:12 | properties |
| conditions.bicep:11:3:11:16 | ObjectProperty |
| conditions.bicep:11:15:11:16 | Object |
| conditions.bicep:11:15:11:16 | Object |
| conditions.bicep:11:15:11:16 | Object |
| data.bicep:1:1:1:10 | Comment |
| data.bicep:1:1:62:4 | Infrastructure |
| data.bicep:2:1:6:1 | VariableDeclaration |
| data.bicep:2:1:6:1 | VariableDeclaration |
| data.bicep:2:1:6:1 | VariableDeclaration |
| data.bicep:2:5:2:18 | multiLineArray |
| data.bicep:2:5:2:18 | multiLineArray |
| data.bicep:2:5:2:18 | multiLineArray |
| data.bicep:2:22:6:1 | Array |
| data.bicep:2:22:6:1 | Array |
| data.bicep:2:22:6:1 | Array |
| data.bicep:3:3:3:7 | String |
| data.bicep:3:3:3:7 | String |
| data.bicep:3:3:3:7 | String |
| data.bicep:3:4:3:6 | abc |
| data.bicep:4:3:4:7 | String |
| data.bicep:4:3:4:7 | String |
| data.bicep:4:3:4:7 | String |
| data.bicep:4:4:4:6 | def |
| data.bicep:5:3:5:7 | String |
| data.bicep:5:3:5:7 | String |
| data.bicep:5:3:5:7 | String |
| data.bicep:5:4:5:6 | ghi |
| data.bicep:8:1:8:43 | VariableDeclaration |
| data.bicep:8:1:8:43 | VariableDeclaration |
| data.bicep:8:1:8:43 | VariableDeclaration |
| data.bicep:8:5:8:19 | singleLineArray |
| data.bicep:8:5:8:19 | singleLineArray |
| data.bicep:8:5:8:19 | singleLineArray |
| data.bicep:8:23:8:43 | Array |
| data.bicep:8:23:8:43 | Array |
| data.bicep:8:23:8:43 | Array |
| data.bicep:8:24:8:28 | String |
| data.bicep:8:24:8:28 | String |
| data.bicep:8:24:8:28 | String |
| data.bicep:8:25:8:27 | abc |
| data.bicep:8:31:8:35 | String |
| data.bicep:8:31:8:35 | String |
| data.bicep:8:31:8:35 | String |
| data.bicep:8:32:8:34 | def |
| data.bicep:8:38:8:42 | String |
| data.bicep:8:38:8:42 | String |
| data.bicep:8:38:8:42 | String |
| data.bicep:8:39:8:41 | ghi |
| data.bicep:10:1:11:10 | VariableDeclaration |
| data.bicep:10:1:11:10 | VariableDeclaration |
| data.bicep:10:1:11:10 | VariableDeclaration |
| data.bicep:10:5:10:14 | mixedArray |
| data.bicep:10:5:10:14 | mixedArray |
| data.bicep:10:5:10:14 | mixedArray |
| data.bicep:10:18:11:10 | Array |
| data.bicep:10:18:11:10 | Array |
| data.bicep:10:18:11:10 | Array |
| data.bicep:10:19:10:23 | String |
| data.bicep:10:19:10:23 | String |
| data.bicep:10:19:10:23 | String |
| data.bicep:10:20:10:22 | abc |
| data.bicep:10:26:10:30 | String |
| data.bicep:10:26:10:30 | String |
| data.bicep:10:26:10:30 | String |
| data.bicep:10:27:10:29 | def |
| data.bicep:11:5:11:9 | String |
| data.bicep:11:5:11:9 | String |
| data.bicep:11:5:11:9 | String |
| data.bicep:11:6:11:8 | ghi |
| data.bicep:13:1:13:28 | VariableDeclaration |
| data.bicep:13:1:13:28 | VariableDeclaration |
| data.bicep:13:1:13:28 | VariableDeclaration |
| data.bicep:13:5:13:16 | exampleArray |
| data.bicep:13:5:13:16 | exampleArray |
| data.bicep:13:5:13:16 | exampleArray |
| data.bicep:13:20:13:28 | Array |
| data.bicep:13:20:13:28 | Array |
| data.bicep:13:20:13:28 | Array |
| data.bicep:13:21:13:21 | 1 |
| data.bicep:13:21:13:21 | 1 |
| data.bicep:13:21:13:21 | 1 |
| data.bicep:13:24:13:24 | 2 |
| data.bicep:13:24:13:24 | 2 |
| data.bicep:13:24:13:24 | 2 |
| data.bicep:13:27:13:27 | 3 |
| data.bicep:13:27:13:27 | 3 |
| data.bicep:13:27:13:27 | 3 |
| data.bicep:14:1:14:41 | OutputDeclaration |
| data.bicep:14:1:14:41 | OutputDeclaration |
| data.bicep:14:1:14:41 | OutputDeclaration |
| data.bicep:14:8:14:19 | firstElement |
| data.bicep:14:8:14:19 | firstElement |
| data.bicep:14:8:14:19 | firstElement |
| data.bicep:14:21:14:23 | Type |
| data.bicep:14:21:14:23 | int |
| data.bicep:14:27:14:38 | exampleArray |
| data.bicep:14:27:14:38 | exampleArray |
| data.bicep:14:27:14:38 | exampleArray |
| data.bicep:14:27:14:41 | SubscriptExpression |
| data.bicep:14:27:14:41 | SubscriptExpression |
| data.bicep:14:27:14:41 | SubscriptExpression |
| data.bicep:14:40:14:40 | 0 |
| data.bicep:14:40:14:40 | 0 |
| data.bicep:14:40:14:40 | 0 |
| data.bicep:14:43:14:46 | Comment |
| data.bicep:15:1:15:41 | OutputDeclaration |
| data.bicep:15:1:15:41 | OutputDeclaration |
| data.bicep:15:1:15:41 | OutputDeclaration |
| data.bicep:15:8:15:19 | thirdElement |
| data.bicep:15:8:15:19 | thirdElement |
| data.bicep:15:8:15:19 | thirdElement |
| data.bicep:15:21:15:23 | Type |
| data.bicep:15:21:15:23 | int |
| data.bicep:15:27:15:38 | exampleArray |
| data.bicep:15:27:15:38 | exampleArray |
| data.bicep:15:27:15:38 | exampleArray |
| data.bicep:15:27:15:41 | SubscriptExpression |
| data.bicep:15:27:15:41 | SubscriptExpression |
| data.bicep:15:27:15:41 | SubscriptExpression |
| data.bicep:15:40:15:40 | 2 |
| data.bicep:15:40:15:40 | 2 |
| data.bicep:15:40:15:40 | 2 |
| data.bicep:15:43:15:46 | Comment |
| data.bicep:17:1:17:13 | VariableDeclaration |
| data.bicep:17:1:17:13 | VariableDeclaration |
| data.bicep:17:1:17:13 | VariableDeclaration |
| data.bicep:17:5:17:9 | index |
| data.bicep:17:5:17:9 | index |
| data.bicep:17:5:17:9 | index |
| data.bicep:17:13:17:13 | 1 |
| data.bicep:17:13:17:13 | 1 |
| data.bicep:17:13:17:13 | 1 |
| data.bicep:18:1:18:46 | OutputDeclaration |
| data.bicep:18:1:18:46 | OutputDeclaration |
| data.bicep:18:1:18:46 | OutputDeclaration |
| data.bicep:18:8:18:20 | secondElement |
| data.bicep:18:8:18:20 | secondElement |
| data.bicep:18:8:18:20 | secondElement |
| data.bicep:18:22:18:24 | Type |
| data.bicep:18:22:18:24 | int |
| data.bicep:18:28:18:39 | exampleArray |
| data.bicep:18:28:18:39 | exampleArray |
| data.bicep:18:28:18:39 | exampleArray |
| data.bicep:18:28:18:46 | SubscriptExpression |
| data.bicep:18:28:18:46 | SubscriptExpression |
| data.bicep:18:28:18:46 | SubscriptExpression |
| data.bicep:18:41:18:45 | index |
| data.bicep:18:41:18:45 | index |
| data.bicep:18:41:18:45 | index |
| data.bicep:18:48:18:51 | Comment |
| data.bicep:20:1:20:11 | Comment |
| data.bicep:21:1:21:29 | ParameterDeclaration |
| data.bicep:21:1:21:29 | ParameterDeclaration |
| data.bicep:21:1:21:29 | ParameterDeclaration |
| data.bicep:21:7:21:17 | exampleBool |
| data.bicep:21:7:21:17 | exampleBool |
| data.bicep:21:7:21:17 | exampleBool |
| data.bicep:21:19:21:22 | Type |
| data.bicep:21:19:21:22 | bool |
| data.bicep:21:26:21:29 | true |
| data.bicep:21:26:21:29 | true |
| data.bicep:21:26:21:29 | true |
| data.bicep:23:1:23:11 | Comment |
| data.bicep:24:1:24:24 | ParameterDeclaration |
| data.bicep:24:1:24:24 | ParameterDeclaration |
| data.bicep:24:1:24:24 | ParameterDeclaration |
| data.bicep:24:7:24:16 | exampleInt |
| data.bicep:24:7:24:16 | exampleInt |
| data.bicep:24:7:24:16 | exampleInt |
| data.bicep:24:18:24:20 | Type |
| data.bicep:24:18:24:20 | int |
| data.bicep:24:24:24:24 | 1 |
| data.bicep:24:24:24:24 | 1 |
| data.bicep:24:24:24:24 | 1 |
| data.bicep:26:1:26:10 | Comment |
| data.bicep:27:1:27:92 | ParameterDeclaration |
| data.bicep:27:1:27:92 | ParameterDeclaration |
| data.bicep:27:1:27:92 | ParameterDeclaration |
| data.bicep:27:7:27:22 | singleLineObject |
| data.bicep:27:7:27:22 | singleLineObject |
| data.bicep:27:7:27:22 | singleLineObject |
| data.bicep:27:24:27:29 | Type |
| data.bicep:27:24:27:29 | object |
| data.bicep:27:33:27:92 | Object |
| data.bicep:27:33:27:92 | Object |
| data.bicep:27:33:27:92 | Object |
| data.bicep:27:34:27:37 | name |
| data.bicep:27:34:27:37 | name |
| data.bicep:27:34:27:37 | name |
| data.bicep:27:34:27:50 | ObjectProperty |
| data.bicep:27:40:27:50 | String |
| data.bicep:27:40:27:50 | String |
| data.bicep:27:40:27:50 | String |
| data.bicep:27:41:27:49 | test name |
| data.bicep:27:53:27:54 | id |
| data.bicep:27:53:27:54 | id |
| data.bicep:27:53:27:54 | id |
| data.bicep:27:53:27:65 | ObjectProperty |
| data.bicep:27:57:27:65 | String |
| data.bicep:27:57:27:65 | String |
| data.bicep:27:57:27:65 | String |
| data.bicep:27:58:27:64 | 123-abc |
| data.bicep:27:68:27:76 | isCurrent |
| data.bicep:27:68:27:76 | isCurrent |
| data.bicep:27:68:27:76 | isCurrent |
| data.bicep:27:68:27:82 | ObjectProperty |
| data.bicep:27:79:27:82 | true |
| data.bicep:27:79:27:82 | true |
| data.bicep:27:79:27:82 | true |
| data.bicep:27:85:27:88 | tier |
| data.bicep:27:85:27:88 | tier |
| data.bicep:27:85:27:88 | tier |
| data.bicep:27:85:27:91 | ObjectProperty |
| data.bicep:27:91:27:91 | 1 |
| data.bicep:27:91:27:91 | 1 |
| data.bicep:27:91:27:91 | 1 |
| data.bicep:29:1:34:1 | ParameterDeclaration |
| data.bicep:29:1:34:1 | ParameterDeclaration |
| data.bicep:29:1:34:1 | ParameterDeclaration |
| data.bicep:29:7:29:21 | multiLineObject |
| data.bicep:29:7:29:21 | multiLineObject |
| data.bicep:29:7:29:21 | multiLineObject |
| data.bicep:29:23:29:28 | Type |
| data.bicep:29:23:29:28 | object |
| data.bicep:29:32:34:1 | Object |
| data.bicep:29:32:34:1 | Object |
| data.bicep:29:32:34:1 | Object |
| data.bicep:30:3:30:6 | name |
| data.bicep:30:3:30:6 | name |
| data.bicep:30:3:30:6 | name |
| data.bicep:30:3:30:19 | ObjectProperty |
| data.bicep:30:9:30:19 | String |
| data.bicep:30:9:30:19 | String |
| data.bicep:30:9:30:19 | String |
| data.bicep:30:10:30:18 | test name |
| data.bicep:31:3:31:4 | id |
| data.bicep:31:3:31:4 | id |
| data.bicep:31:3:31:4 | id |
| data.bicep:31:3:31:15 | ObjectProperty |
| data.bicep:31:7:31:15 | String |
| data.bicep:31:7:31:15 | String |
| data.bicep:31:7:31:15 | String |
| data.bicep:31:8:31:14 | 123-abc |
| data.bicep:32:3:32:11 | isCurrent |
| data.bicep:32:3:32:11 | isCurrent |
| data.bicep:32:3:32:11 | isCurrent |
| data.bicep:32:3:32:17 | ObjectProperty |
| data.bicep:32:14:32:17 | true |
| data.bicep:32:14:32:17 | true |
| data.bicep:32:14:32:17 | true |
| data.bicep:33:3:33:6 | tier |
| data.bicep:33:3:33:6 | tier |
| data.bicep:33:3:33:6 | tier |
| data.bicep:33:3:33:9 | ObjectProperty |
| data.bicep:33:9:33:9 | 1 |
| data.bicep:33:9:33:9 | 1 |
| data.bicep:33:9:33:9 | 1 |
| data.bicep:36:1:37:12 | ParameterDeclaration |
| data.bicep:36:1:37:12 | ParameterDeclaration |
| data.bicep:36:1:37:12 | ParameterDeclaration |
| data.bicep:36:7:36:17 | mixedObject |
| data.bicep:36:7:36:17 | mixedObject |
| data.bicep:36:7:36:17 | mixedObject |
| data.bicep:36:19:36:24 | Type |
| data.bicep:36:19:36:24 | object |
| data.bicep:36:28:37:12 | Object |
| data.bicep:36:28:37:12 | Object |
| data.bicep:36:28:37:12 | Object |
| data.bicep:36:29:36:32 | name |
| data.bicep:36:29:36:32 | name |
| data.bicep:36:29:36:32 | name |
| data.bicep:36:29:36:45 | ObjectProperty |
| data.bicep:36:35:36:45 | String |
| data.bicep:36:35:36:45 | String |
| data.bicep:36:35:36:45 | String |
| data.bicep:36:36:36:44 | test name |
| data.bicep:36:48:36:49 | id |
| data.bicep:36:48:36:49 | id |
| data.bicep:36:48:36:49 | id |
| data.bicep:36:48:36:60 | ObjectProperty |
| data.bicep:36:52:36:60 | String |
| data.bicep:36:52:36:60 | String |
| data.bicep:36:52:36:60 | String |
| data.bicep:36:53:36:59 | 123-abc |
| data.bicep:36:63:36:71 | isCurrent |
| data.bicep:36:63:36:71 | isCurrent |
| data.bicep:36:63:36:71 | isCurrent |
| data.bicep:36:63:36:77 | ObjectProperty |
| data.bicep:36:74:36:77 | true |
| data.bicep:36:74:36:77 | true |
| data.bicep:36:74:36:77 | true |
| data.bicep:37:5:37:8 | tier |
| data.bicep:37:5:37:8 | tier |
| data.bicep:37:5:37:8 | tier |
| data.bicep:37:5:37:11 | ObjectProperty |
| data.bicep:37:11:37:11 | 1 |
| data.bicep:37:11:37:11 | 1 |
| data.bicep:37:11:37:11 | 1 |
| data.bicep:39:1:39:10 | Comment |
| data.bicep:40:1:40:28 | Comment |
| data.bicep:41:1:41:25 | VariableDeclaration |
| data.bicep:41:1:41:25 | VariableDeclaration |
| data.bicep:41:1:41:25 | VariableDeclaration |
| data.bicep:41:5:41:9 | myVar |
| data.bicep:41:5:41:9 | myVar |
| data.bicep:41:5:41:9 | myVar |
| data.bicep:41:13:41:25 | String |
| data.bicep:41:13:41:25 | String |
| data.bicep:41:13:41:25 | String |
| data.bicep:41:14:41:17 | what |
| data.bicep:41:18:41:19 | \\' |
| data.bicep:41:20:41:24 | s up? |
| data.bicep:42:1:42:52 | TypeDeclaration |
| data.bicep:42:1:42:52 | TypeDeclaration |
| data.bicep:42:1:42:52 | TypeDeclaration |
| data.bicep:42:6:42:14 | direction |
| data.bicep:42:6:42:14 | direction |
| data.bicep:42:6:42:14 | direction |
| data.bicep:42:18:42:24 | String |
| data.bicep:42:18:42:24 | String |
| data.bicep:42:18:42:24 | String |
| data.bicep:42:18:42:52 | UnionType |
| data.bicep:42:19:42:23 | north |
| data.bicep:42:28:42:34 | String |
| data.bicep:42:28:42:34 | String |
| data.bicep:42:28:42:34 | String |
| data.bicep:42:29:42:33 | south |
| data.bicep:42:38:42:43 | String |
| data.bicep:42:38:42:43 | String |
| data.bicep:42:38:42:43 | String |
| data.bicep:42:38:42:52 | BinaryExpression |
| data.bicep:42:38:42:52 | BinaryExpression |
| data.bicep:42:39:42:42 | east |
| data.bicep:42:47:42:52 | String |
| data.bicep:42:47:42:52 | String |
| data.bicep:42:47:42:52 | String |
| data.bicep:42:48:42:51 | west |
| data.bicep:43:1:43:62 | VariableDeclaration |
| data.bicep:43:1:43:62 | VariableDeclaration |
| data.bicep:43:1:43:62 | VariableDeclaration |
| data.bicep:43:5:43:15 | storageName |
| data.bicep:43:5:43:15 | storageName |
| data.bicep:43:5:43:15 | storageName |
| data.bicep:43:19:43:62 | String |
| data.bicep:43:19:43:62 | String |
| data.bicep:43:19:43:62 | String |
| data.bicep:43:20:43:26 | storage |
| data.bicep:43:27:43:61 | Interpolation |
| data.bicep:43:29:43:40 | uniqueString |
| data.bicep:43:29:43:40 | uniqueString |
| data.bicep:43:29:43:40 | uniqueString |
| data.bicep:43:29:43:60 | CallExpression |
| data.bicep:43:29:43:60 | CallExpression |
| data.bicep:43:29:43:60 | CallExpression |
| data.bicep:43:41:43:60 | Arguments |
| data.bicep:43:42:43:54 | resourceGroup |
| data.bicep:43:42:43:54 | resourceGroup |
| data.bicep:43:42:43:54 | resourceGroup |
| data.bicep:43:42:43:56 | CallExpression |
| data.bicep:43:42:43:56 | CallExpression |
| data.bicep:43:42:43:56 | CallExpression |
| data.bicep:43:42:43:59 | MemberExpression |
| data.bicep:43:42:43:59 | MemberExpression |
| data.bicep:43:42:43:59 | MemberExpression |
| data.bicep:43:55:43:56 | Arguments |
| data.bicep:43:58:43:59 | id |
| data.bicep:45:1:45:24 | Comment |
| data.bicep:46:1:46:24 | VariableDeclaration |
| data.bicep:46:1:46:24 | VariableDeclaration |
| data.bicep:46:1:46:24 | VariableDeclaration |
| data.bicep:46:5:46:9 | myVar |
| data.bicep:46:5:46:9 | myVar |
| data.bicep:46:5:46:9 | myVar |
| data.bicep:46:13:46:24 | String |
| data.bicep:46:13:46:24 | String |
| data.bicep:46:13:46:24 | String |
| data.bicep:46:16:46:21 | hello! |
| data.bicep:48:1:48:61 | Comment |
| data.bicep:49:1:50:9 | VariableDeclaration |
| data.bicep:49:1:50:9 | VariableDeclaration |
| data.bicep:49:1:50:9 | VariableDeclaration |
| data.bicep:49:5:49:10 | myVar2 |
| data.bicep:49:5:49:10 | myVar2 |
| data.bicep:49:5:49:10 | myVar2 |
| data.bicep:49:14:50:9 | String |
| data.bicep:49:14:50:9 | String |
| data.bicep:49:14:50:9 | String |
| data.bicep:49:17:50:6 | \nhello! |
| data.bicep:52:1:52:64 | Comment |
| data.bicep:53:1:55:3 | VariableDeclaration |
| data.bicep:53:1:55:3 | VariableDeclaration |
| data.bicep:53:1:55:3 | VariableDeclaration |
| data.bicep:53:5:53:10 | myVar3 |
| data.bicep:53:5:53:10 | myVar3 |
| data.bicep:53:5:53:10 | myVar3 |
| data.bicep:53:14:55:3 | String |
| data.bicep:53:14:55:3 | String |
| data.bicep:53:14:55:3 | String |
| data.bicep:53:17:54:7 | \nhello!\n |
| data.bicep:57:1:57:50 | Comment |
| data.bicep:58:1:62:3 | VariableDeclaration |
| data.bicep:58:1:62:3 | VariableDeclaration |
| data.bicep:58:1:62:3 | VariableDeclaration |
| data.bicep:58:5:58:10 | myVar4 |
| data.bicep:58:5:58:10 | myVar4 |
| data.bicep:58:5:58:10 | myVar4 |
| data.bicep:58:14:62:3 | String |
| data.bicep:58:14:62:3 | String |
| data.bicep:58:14:62:3 | String |
| data.bicep:58:17:61:15 | \n this\n is\n indented\n |
| sample.bicep:1:1:1:48 | ParameterDeclaration |
| sample.bicep:1:1:1:48 | ParameterDeclaration |
| sample.bicep:1:1:1:48 | ParameterDeclaration |
| sample.bicep:1:1:103:1 | Infrastructure |
| sample.bicep:1:7:1:14 | location |
| sample.bicep:1:7:1:14 | location |
| sample.bicep:1:7:1:14 | location |
| sample.bicep:1:16:1:21 | Type |
| sample.bicep:1:16:1:21 | string |
| sample.bicep:1:25:1:37 | resourceGroup |
| sample.bicep:1:25:1:37 | resourceGroup |
| sample.bicep:1:25:1:37 | resourceGroup |
| sample.bicep:1:25:1:39 | CallExpression |
| sample.bicep:1:25:1:39 | CallExpression |
| sample.bicep:1:25:1:39 | CallExpression |
| sample.bicep:1:25:1:48 | MemberExpression |
| sample.bicep:1:25:1:48 | MemberExpression |
| sample.bicep:1:25:1:48 | MemberExpression |
| sample.bicep:1:38:1:39 | Arguments |
| sample.bicep:1:41:1:48 | location |
| sample.bicep:2:1:2:80 | ParameterDeclaration |
| sample.bicep:2:1:2:80 | ParameterDeclaration |
| sample.bicep:2:1:2:80 | ParameterDeclaration |
| sample.bicep:2:7:2:24 | storageAccountName |
| sample.bicep:2:7:2:24 | storageAccountName |
| sample.bicep:2:7:2:24 | storageAccountName |
| sample.bicep:2:26:2:31 | Type |
| sample.bicep:2:26:2:31 | string |
| sample.bicep:2:35:2:80 | String |
| sample.bicep:2:35:2:80 | String |
| sample.bicep:2:35:2:80 | String |
| sample.bicep:2:36:2:44 | toylaunch |
| sample.bicep:2:45:2:79 | Interpolation |
| sample.bicep:2:47:2:58 | uniqueString |
| sample.bicep:2:47:2:58 | uniqueString |
| sample.bicep:2:47:2:58 | uniqueString |
| sample.bicep:2:47:2:78 | CallExpression |
| sample.bicep:2:47:2:78 | CallExpression |
| sample.bicep:2:47:2:78 | CallExpression |
| sample.bicep:2:59:2:78 | Arguments |
| sample.bicep:2:60:2:72 | resourceGroup |
| sample.bicep:2:60:2:72 | resourceGroup |
| sample.bicep:2:60:2:72 | resourceGroup |
| sample.bicep:2:60:2:74 | CallExpression |
| sample.bicep:2:60:2:74 | CallExpression |
| sample.bicep:2:60:2:74 | CallExpression |
| sample.bicep:2:60:2:77 | MemberExpression |
| sample.bicep:2:60:2:77 | MemberExpression |
| sample.bicep:2:60:2:77 | MemberExpression |
| sample.bicep:2:73:2:74 | Arguments |
| sample.bicep:2:76:2:77 | id |
| sample.bicep:3:1:3:28 | ParameterDeclaration |
| sample.bicep:3:1:3:28 | ParameterDeclaration |
| sample.bicep:3:1:3:28 | ParameterDeclaration |
| sample.bicep:3:7:3:12 | vmName |
| sample.bicep:3:7:3:12 | vmName |
| sample.bicep:3:7:3:12 | vmName |
| sample.bicep:3:14:3:19 | Type |
| sample.bicep:3:14:3:19 | string |
| sample.bicep:3:23:3:28 | String |
| sample.bicep:3:23:3:28 | String |
| sample.bicep:3:23:3:28 | String |
| sample.bicep:3:24:3:27 | myVM |
| sample.bicep:4:1:4:40 | ParameterDeclaration |
| sample.bicep:4:1:4:40 | ParameterDeclaration |
| sample.bicep:4:1:4:40 | ParameterDeclaration |
| sample.bicep:4:7:4:19 | adminUsername |
| sample.bicep:4:7:4:19 | adminUsername |
| sample.bicep:4:7:4:19 | adminUsername |
| sample.bicep:4:21:4:26 | Type |
| sample.bicep:4:21:4:26 | string |
| sample.bicep:4:30:4:40 | String |
| sample.bicep:4:30:4:40 | String |
| sample.bicep:4:30:4:40 | String |
| sample.bicep:4:31:4:39 | azureuser |
| sample.bicep:5:1:5:43 | ParameterDeclaration |
| sample.bicep:5:1:5:43 | ParameterDeclaration |
| sample.bicep:5:1:5:43 | ParameterDeclaration |
| sample.bicep:5:7:5:19 | adminPassword |
| sample.bicep:5:7:5:19 | adminPassword |
| sample.bicep:5:7:5:19 | adminPassword |
| sample.bicep:5:21:5:26 | Type |
| sample.bicep:5:21:5:26 | string |
| sample.bicep:5:30:5:43 | String |
| sample.bicep:5:30:5:43 | String |
| sample.bicep:5:30:5:43 | String |
| sample.bicep:5:31:5:42 | P@ssw0rd123! |
| sample.bicep:6:1:6:32 | ParameterDeclaration |
| sample.bicep:6:1:6:32 | ParameterDeclaration |
| sample.bicep:6:1:6:32 | ParameterDeclaration |
| sample.bicep:6:7:6:14 | vnetName |
| sample.bicep:6:7:6:14 | vnetName |
| sample.bicep:6:7:6:14 | vnetName |
| sample.bicep:6:16:6:21 | Type |
| sample.bicep:6:16:6:21 | string |
| sample.bicep:6:25:6:32 | String |
| sample.bicep:6:25:6:32 | String |
| sample.bicep:6:25:6:32 | String |
| sample.bicep:6:26:6:31 | myVnet |
| sample.bicep:7:1:7:36 | ParameterDeclaration |
| sample.bicep:7:1:7:36 | ParameterDeclaration |
| sample.bicep:7:1:7:36 | ParameterDeclaration |
| sample.bicep:7:7:7:16 | subnetName |
| sample.bicep:7:7:7:16 | subnetName |
| sample.bicep:7:7:7:16 | subnetName |
| sample.bicep:7:18:7:23 | Type |
| sample.bicep:7:18:7:23 | string |
| sample.bicep:7:27:7:36 | String |
| sample.bicep:7:27:7:36 | String |
| sample.bicep:7:27:7:36 | String |
| sample.bicep:7:28:7:35 | mySubnet |
| sample.bicep:8:1:8:40 | ParameterDeclaration |
| sample.bicep:8:1:8:40 | ParameterDeclaration |
| sample.bicep:8:1:8:40 | ParameterDeclaration |
| sample.bicep:8:7:8:18 | publicIpName |
| sample.bicep:8:7:8:18 | publicIpName |
| sample.bicep:8:7:8:18 | publicIpName |
| sample.bicep:8:20:8:25 | Type |
| sample.bicep:8:20:8:25 | string |
| sample.bicep:8:29:8:40 | String |
| sample.bicep:8:29:8:40 | String |
| sample.bicep:8:29:8:40 | String |
| sample.bicep:8:30:8:39 | myPublicIP |
| sample.bicep:9:1:9:30 | ParameterDeclaration |
| sample.bicep:9:1:9:30 | ParameterDeclaration |
| sample.bicep:9:1:9:30 | ParameterDeclaration |
| sample.bicep:9:7:9:13 | nicName |
| sample.bicep:9:7:9:13 | nicName |
| sample.bicep:9:7:9:13 | nicName |
| sample.bicep:9:15:9:20 | Type |
| sample.bicep:9:15:9:20 | string |
| sample.bicep:9:24:9:30 | String |
| sample.bicep:9:24:9:30 | String |
| sample.bicep:9:24:9:30 | String |
| sample.bicep:9:25:9:29 | myNIC |
| sample.bicep:11:1:21:1 | ResourceDeclaration |
| sample.bicep:11:1:21:1 | ResourceDeclaration |
| sample.bicep:11:1:21:1 | ResourceDeclaration |
| sample.bicep:11:10:11:23 | storageAccount |
| sample.bicep:11:10:11:23 | storageAccount |
| sample.bicep:11:10:11:23 | storageAccount |
| sample.bicep:11:25:11:70 | String |
| sample.bicep:11:25:11:70 | String |
| sample.bicep:11:25:11:70 | String |
| sample.bicep:11:26:11:69 | Microsoft.Storage/storageAccounts@2021-06-01 |
| sample.bicep:11:74:21:1 | Object |
| sample.bicep:11:74:21:1 | Object |
| sample.bicep:11:74:21:1 | Object |
| sample.bicep:12:3:12:6 | name |
| sample.bicep:12:3:12:6 | name |
| sample.bicep:12:3:12:6 | name |
| sample.bicep:12:3:12:26 | ObjectProperty |
| sample.bicep:12:9:12:26 | storageAccountName |
| sample.bicep:12:9:12:26 | storageAccountName |
| sample.bicep:12:9:12:26 | storageAccountName |
| sample.bicep:13:3:13:10 | location |
| sample.bicep:13:3:13:10 | location |
| sample.bicep:13:3:13:10 | location |
| sample.bicep:13:3:13:20 | ObjectProperty |
| sample.bicep:13:13:13:20 | location |
| sample.bicep:13:13:13:20 | location |
| sample.bicep:13:13:13:20 | location |
| sample.bicep:14:3:14:5 | sku |
| sample.bicep:14:3:14:5 | sku |
| sample.bicep:14:3:14:5 | sku |
| sample.bicep:14:3:16:3 | ObjectProperty |
| sample.bicep:14:8:16:3 | Object |
| sample.bicep:14:8:16:3 | Object |
| sample.bicep:14:8:16:3 | Object |
| sample.bicep:15:5:15:8 | name |
| sample.bicep:15:5:15:8 | name |
| sample.bicep:15:5:15:8 | name |
| sample.bicep:15:5:15:24 | ObjectProperty |
| sample.bicep:15:11:15:24 | String |
| sample.bicep:15:11:15:24 | String |
| sample.bicep:15:11:15:24 | String |
| sample.bicep:15:12:15:23 | Standard_LRS |
| sample.bicep:17:3:17:6 | kind |
| sample.bicep:17:3:17:6 | kind |
| sample.bicep:17:3:17:6 | kind |
| sample.bicep:17:3:17:19 | ObjectProperty |
| sample.bicep:17:9:17:19 | String |
| sample.bicep:17:9:17:19 | String |
| sample.bicep:17:9:17:19 | String |
| sample.bicep:17:10:17:18 | StorageV2 |
| sample.bicep:18:3:18:12 | properties |
| sample.bicep:18:3:18:12 | properties |
| sample.bicep:18:3:18:12 | properties |
| sample.bicep:18:3:20:3 | ObjectProperty |
| sample.bicep:18:15:20:3 | Object |
| sample.bicep:18:15:20:3 | Object |
| sample.bicep:18:15:20:3 | Object |
| sample.bicep:19:5:19:14 | accessTier |
| sample.bicep:19:5:19:14 | accessTier |
| sample.bicep:19:5:19:14 | accessTier |
| sample.bicep:19:5:19:21 | ObjectProperty |
| sample.bicep:19:17:19:21 | String |
| sample.bicep:19:17:19:21 | String |
| sample.bicep:19:17:19:21 | String |
| sample.bicep:19:18:19:20 | Hot |
| sample.bicep:23:1:41:1 | ResourceDeclaration |
| sample.bicep:23:1:41:1 | ResourceDeclaration |
| sample.bicep:23:1:41:1 | ResourceDeclaration |
| sample.bicep:23:10:23:13 | vnet |
| sample.bicep:23:10:23:13 | vnet |
| sample.bicep:23:10:23:13 | vnet |
| sample.bicep:23:15:23:60 | String |
| sample.bicep:23:15:23:60 | String |
| sample.bicep:23:15:23:60 | String |
| sample.bicep:23:16:23:59 | Microsoft.Network/virtualNetworks@2021-05-01 |
| sample.bicep:23:64:41:1 | Object |
| sample.bicep:23:64:41:1 | Object |
| sample.bicep:23:64:41:1 | Object |
| sample.bicep:24:3:24:6 | name |
| sample.bicep:24:3:24:6 | name |
| sample.bicep:24:3:24:6 | name |
| sample.bicep:24:3:24:16 | ObjectProperty |
| sample.bicep:24:9:24:16 | vnetName |
| sample.bicep:24:9:24:16 | vnetName |
| sample.bicep:24:9:24:16 | vnetName |
| sample.bicep:25:3:25:10 | location |
| sample.bicep:25:3:25:10 | location |
| sample.bicep:25:3:25:10 | location |
| sample.bicep:25:3:25:20 | ObjectProperty |
| sample.bicep:25:13:25:20 | location |
| sample.bicep:25:13:25:20 | location |
| sample.bicep:25:13:25:20 | location |
| sample.bicep:26:3:26:12 | properties |
| sample.bicep:26:3:26:12 | properties |
| sample.bicep:26:3:26:12 | properties |
| sample.bicep:26:3:40:3 | ObjectProperty |
| sample.bicep:26:15:40:3 | Object |
| sample.bicep:26:15:40:3 | Object |
| sample.bicep:26:15:40:3 | Object |
| sample.bicep:27:5:27:16 | addressSpace |
| sample.bicep:27:5:27:16 | addressSpace |
| sample.bicep:27:5:27:16 | addressSpace |
| sample.bicep:27:5:31:5 | ObjectProperty |
| sample.bicep:27:19:31:5 | Object |
| sample.bicep:27:19:31:5 | Object |
| sample.bicep:27:19:31:5 | Object |
| sample.bicep:28:7:28:21 | addressPrefixes |
| sample.bicep:28:7:28:21 | addressPrefixes |
| sample.bicep:28:7:28:21 | addressPrefixes |
| sample.bicep:28:7:30:7 | ObjectProperty |
| sample.bicep:28:24:30:7 | Array |
| sample.bicep:28:24:30:7 | Array |
| sample.bicep:28:24:30:7 | Array |
| sample.bicep:29:9:29:21 | String |
| sample.bicep:29:9:29:21 | String |
| sample.bicep:29:9:29:21 | String |
| sample.bicep:29:10:29:20 | 10.0.0.0/16 |
| sample.bicep:32:5:32:11 | subnets |
| sample.bicep:32:5:32:11 | subnets |
| sample.bicep:32:5:32:11 | subnets |
| sample.bicep:32:5:39:5 | ObjectProperty |
| sample.bicep:32:14:39:5 | Array |
| sample.bicep:32:14:39:5 | Array |
| sample.bicep:32:14:39:5 | Array |
| sample.bicep:33:7:38:7 | Object |
| sample.bicep:33:7:38:7 | Object |
| sample.bicep:33:7:38:7 | Object |
| sample.bicep:34:9:34:12 | name |
| sample.bicep:34:9:34:12 | name |
| sample.bicep:34:9:34:12 | name |
| sample.bicep:34:9:34:24 | ObjectProperty |
| sample.bicep:34:15:34:24 | subnetName |
| sample.bicep:34:15:34:24 | subnetName |
| sample.bicep:34:15:34:24 | subnetName |
| sample.bicep:35:9:35:18 | properties |
| sample.bicep:35:9:35:18 | properties |
| sample.bicep:35:9:35:18 | properties |
| sample.bicep:35:9:37:9 | ObjectProperty |
| sample.bicep:35:21:37:9 | Object |
| sample.bicep:35:21:37:9 | Object |
| sample.bicep:35:21:37:9 | Object |
| sample.bicep:36:11:36:23 | addressPrefix |
| sample.bicep:36:11:36:23 | addressPrefix |
| sample.bicep:36:11:36:23 | addressPrefix |
| sample.bicep:36:11:36:38 | ObjectProperty |
| sample.bicep:36:26:36:38 | String |
| sample.bicep:36:26:36:38 | String |
| sample.bicep:36:26:36:38 | String |
| sample.bicep:36:27:36:37 | 10.0.0.0/24 |
| sample.bicep:43:1:49:1 | ResourceDeclaration |
| sample.bicep:43:1:49:1 | ResourceDeclaration |
| sample.bicep:43:1:49:1 | ResourceDeclaration |
| sample.bicep:43:10:43:17 | publicIp |
| sample.bicep:43:10:43:17 | publicIp |
| sample.bicep:43:10:43:17 | publicIp |
| sample.bicep:43:19:43:66 | String |
| sample.bicep:43:19:43:66 | String |
| sample.bicep:43:19:43:66 | String |
| sample.bicep:43:20:43:65 | Microsoft.Network/publicIPAddresses@2021-05-01 |
| sample.bicep:43:70:49:1 | Object |
| sample.bicep:43:70:49:1 | Object |
| sample.bicep:43:70:49:1 | Object |
| sample.bicep:44:3:44:6 | name |
| sample.bicep:44:3:44:6 | name |
| sample.bicep:44:3:44:6 | name |
| sample.bicep:44:3:44:20 | ObjectProperty |
| sample.bicep:44:9:44:20 | publicIpName |
| sample.bicep:44:9:44:20 | publicIpName |
| sample.bicep:44:9:44:20 | publicIpName |
| sample.bicep:45:3:45:10 | location |
| sample.bicep:45:3:45:10 | location |
| sample.bicep:45:3:45:10 | location |
| sample.bicep:45:3:45:20 | ObjectProperty |
| sample.bicep:45:13:45:20 | location |
| sample.bicep:45:13:45:20 | location |
| sample.bicep:45:13:45:20 | location |
| sample.bicep:46:3:46:12 | properties |
| sample.bicep:46:3:46:12 | properties |
| sample.bicep:46:3:46:12 | properties |
| sample.bicep:46:3:48:3 | ObjectProperty |
| sample.bicep:46:15:48:3 | Object |
| sample.bicep:46:15:48:3 | Object |
| sample.bicep:46:15:48:3 | Object |
| sample.bicep:47:5:47:28 | publicIPAllocationMethod |
| sample.bicep:47:5:47:28 | publicIPAllocationMethod |
| sample.bicep:47:5:47:28 | publicIPAllocationMethod |
| sample.bicep:47:5:47:39 | ObjectProperty |
| sample.bicep:47:31:47:39 | String |
| sample.bicep:47:31:47:39 | String |
| sample.bicep:47:31:47:39 | String |
| sample.bicep:47:32:47:38 | Dynamic |
| sample.bicep:51:1:70:1 | ResourceDeclaration |
| sample.bicep:51:1:70:1 | ResourceDeclaration |
| sample.bicep:51:1:70:1 | ResourceDeclaration |
| sample.bicep:51:10:51:12 | nic |
| sample.bicep:51:10:51:12 | nic |
| sample.bicep:51:10:51:12 | nic |
| sample.bicep:51:14:51:61 | String |
| sample.bicep:51:14:51:61 | String |
| sample.bicep:51:14:51:61 | String |
| sample.bicep:51:15:51:60 | Microsoft.Network/networkInterfaces@2021-05-01 |
| sample.bicep:51:65:70:1 | Object |
| sample.bicep:51:65:70:1 | Object |
| sample.bicep:51:65:70:1 | Object |
| sample.bicep:52:3:52:6 | name |
| sample.bicep:52:3:52:6 | name |
| sample.bicep:52:3:52:6 | name |
| sample.bicep:52:3:52:15 | ObjectProperty |
| sample.bicep:52:9:52:15 | nicName |
| sample.bicep:52:9:52:15 | nicName |
| sample.bicep:52:9:52:15 | nicName |
| sample.bicep:53:3:53:10 | location |
| sample.bicep:53:3:53:10 | location |
| sample.bicep:53:3:53:10 | location |
| sample.bicep:53:3:53:20 | ObjectProperty |
| sample.bicep:53:13:53:20 | location |
| sample.bicep:53:13:53:20 | location |
| sample.bicep:53:13:53:20 | location |
| sample.bicep:54:3:54:12 | properties |
| sample.bicep:54:3:54:12 | properties |
| sample.bicep:54:3:54:12 | properties |
| sample.bicep:54:3:69:3 | ObjectProperty |
| sample.bicep:54:15:69:3 | Object |
| sample.bicep:54:15:69:3 | Object |
| sample.bicep:54:15:69:3 | Object |
| sample.bicep:55:5:55:20 | ipConfigurations |
| sample.bicep:55:5:55:20 | ipConfigurations |
| sample.bicep:55:5:55:20 | ipConfigurations |
| sample.bicep:55:5:68:5 | ObjectProperty |
| sample.bicep:55:23:68:5 | Array |
| sample.bicep:55:23:68:5 | Array |
| sample.bicep:55:23:68:5 | Array |
| sample.bicep:56:7:67:7 | Object |
| sample.bicep:56:7:67:7 | Object |
| sample.bicep:56:7:67:7 | Object |
| sample.bicep:57:9:57:12 | name |
| sample.bicep:57:9:57:12 | name |
| sample.bicep:57:9:57:12 | name |
| sample.bicep:57:9:57:25 | ObjectProperty |
| sample.bicep:57:15:57:25 | String |
| sample.bicep:57:15:57:25 | String |
| sample.bicep:57:15:57:25 | String |
| sample.bicep:57:16:57:24 | ipconfig1 |
| sample.bicep:58:9:58:18 | properties |
| sample.bicep:58:9:58:18 | properties |
| sample.bicep:58:9:58:18 | properties |
| sample.bicep:58:9:66:9 | ObjectProperty |
| sample.bicep:58:21:66:9 | Object |
| sample.bicep:58:21:66:9 | Object |
| sample.bicep:58:21:66:9 | Object |
| sample.bicep:59:11:59:16 | subnet |
| sample.bicep:59:11:59:16 | subnet |
| sample.bicep:59:11:59:16 | subnet |
| sample.bicep:59:11:61:11 | ObjectProperty |
| sample.bicep:59:19:61:11 | Object |
| sample.bicep:59:19:61:11 | Object |
| sample.bicep:59:19:61:11 | Object |
| sample.bicep:60:13:60:14 | id |
| sample.bicep:60:13:60:14 | id |
| sample.bicep:60:13:60:14 | id |
| sample.bicep:60:13:60:45 | ObjectProperty |
| sample.bicep:60:17:60:20 | vnet |
| sample.bicep:60:17:60:20 | vnet |
| sample.bicep:60:17:60:20 | vnet |
| sample.bicep:60:17:60:31 | MemberExpression |
| sample.bicep:60:17:60:31 | MemberExpression |
| sample.bicep:60:17:60:31 | MemberExpression |
| sample.bicep:60:17:60:39 | MemberExpression |
| sample.bicep:60:17:60:39 | MemberExpression |
| sample.bicep:60:17:60:39 | MemberExpression |
| sample.bicep:60:17:60:42 | SubscriptExpression |
| sample.bicep:60:17:60:42 | SubscriptExpression |
| sample.bicep:60:17:60:42 | SubscriptExpression |
| sample.bicep:60:17:60:45 | MemberExpression |
| sample.bicep:60:17:60:45 | MemberExpression |
| sample.bicep:60:17:60:45 | MemberExpression |
| sample.bicep:60:22:60:31 | properties |
| sample.bicep:60:33:60:39 | subnets |
| sample.bicep:60:41:60:41 | 0 |
| sample.bicep:60:41:60:41 | 0 |
| sample.bicep:60:41:60:41 | 0 |
| sample.bicep:60:44:60:45 | id |
| sample.bicep:62:11:62:35 | privateIPAllocationMethod |
| sample.bicep:62:11:62:35 | privateIPAllocationMethod |
| sample.bicep:62:11:62:35 | privateIPAllocationMethod |
| sample.bicep:62:11:62:46 | ObjectProperty |
| sample.bicep:62:38:62:46 | String |
| sample.bicep:62:38:62:46 | String |
| sample.bicep:62:38:62:46 | String |
| sample.bicep:62:39:62:45 | Dynamic |
| sample.bicep:63:11:63:25 | publicIPAddress |
| sample.bicep:63:11:63:25 | publicIPAddress |
| sample.bicep:63:11:63:25 | publicIPAddress |
| sample.bicep:63:11:65:11 | ObjectProperty |
| sample.bicep:63:28:65:11 | Object |
| sample.bicep:63:28:65:11 | Object |
| sample.bicep:63:28:65:11 | Object |
| sample.bicep:64:13:64:14 | id |
| sample.bicep:64:13:64:14 | id |
| sample.bicep:64:13:64:14 | id |
| sample.bicep:64:13:64:27 | ObjectProperty |
| sample.bicep:64:17:64:24 | publicIp |
| sample.bicep:64:17:64:24 | publicIp |
| sample.bicep:64:17:64:24 | publicIp |
| sample.bicep:64:17:64:27 | MemberExpression |
| sample.bicep:64:17:64:27 | MemberExpression |
| sample.bicep:64:17:64:27 | MemberExpression |
| sample.bicep:64:26:64:27 | id |
| sample.bicep:72:1:103:1 | ResourceDeclaration |
| sample.bicep:72:1:103:1 | ResourceDeclaration |
| sample.bicep:72:1:103:1 | ResourceDeclaration |
| sample.bicep:72:10:72:11 | vm |
| sample.bicep:72:10:72:11 | vm |
| sample.bicep:72:10:72:11 | vm |
| sample.bicep:72:13:72:58 | String |
| sample.bicep:72:13:72:58 | String |
| sample.bicep:72:13:72:58 | String |
| sample.bicep:72:14:72:57 | Microsoft.Compute/virtualMachines@2021-07-01 |
| sample.bicep:72:62:103:1 | Object |
| sample.bicep:72:62:103:1 | Object |
| sample.bicep:72:62:103:1 | Object |
| sample.bicep:73:3:73:6 | name |
| sample.bicep:73:3:73:6 | name |
| sample.bicep:73:3:73:6 | name |
| sample.bicep:73:3:73:14 | ObjectProperty |
| sample.bicep:73:9:73:14 | vmName |
| sample.bicep:73:9:73:14 | vmName |
| sample.bicep:73:9:73:14 | vmName |
| sample.bicep:74:3:74:10 | location |
| sample.bicep:74:3:74:10 | location |
| sample.bicep:74:3:74:10 | location |
| sample.bicep:74:3:74:20 | ObjectProperty |
| sample.bicep:74:13:74:20 | location |
| sample.bicep:74:13:74:20 | location |
| sample.bicep:74:13:74:20 | location |
| sample.bicep:75:3:75:12 | properties |
| sample.bicep:75:3:75:12 | properties |
| sample.bicep:75:3:75:12 | properties |
| sample.bicep:75:3:102:3 | ObjectProperty |
| sample.bicep:75:15:102:3 | Object |
| sample.bicep:75:15:102:3 | Object |
| sample.bicep:75:15:102:3 | Object |
| sample.bicep:76:5:76:19 | hardwareProfile |
| sample.bicep:76:5:76:19 | hardwareProfile |
| sample.bicep:76:5:76:19 | hardwareProfile |
| sample.bicep:76:5:78:5 | ObjectProperty |
| sample.bicep:76:22:78:5 | Object |
| sample.bicep:76:22:78:5 | Object |
| sample.bicep:76:22:78:5 | Object |
| sample.bicep:77:7:77:12 | vmSize |
| sample.bicep:77:7:77:12 | vmSize |
| sample.bicep:77:7:77:12 | vmSize |
| sample.bicep:77:7:77:31 | ObjectProperty |
| sample.bicep:77:15:77:31 | String |
| sample.bicep:77:15:77:31 | String |
| sample.bicep:77:15:77:31 | String |
| sample.bicep:77:16:77:30 | Standard_DS1_v2 |
| sample.bicep:79:5:79:13 | osProfile |
| sample.bicep:79:5:79:13 | osProfile |
| sample.bicep:79:5:79:13 | osProfile |
| sample.bicep:79:5:83:5 | ObjectProperty |
| sample.bicep:79:16:83:5 | Object |