-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfstate
1015 lines (1015 loc) · 44.2 KB
/
terraform.tfstate
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
{
"version": 4,
"terraform_version": "1.0.7",
"serial": 178,
"lineage": "f4e55711-4538-9cc4-3556-4c1a814f7578",
"outputs": {},
"resources": [
{
"mode": "managed",
"type": "azurerm_availability_set",
"name": "availSet",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/availabilitySets/015availSet",
"location": "westus",
"managed": true,
"name": "015availSet",
"platform_fault_domain_count": 2,
"platform_update_domain_count": 5,
"proximity_placement_group_id": null,
"resource_group_name": "015-resources",
"tags": null,
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_resource_group.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_lb",
"name": "main-lb",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"frontend_ip_configuration": [
{
"availability_zone": "No-Zone",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/frontendIPConfigurations/PublicIPAddress",
"inbound_nat_rules": [],
"load_balancer_rules": [],
"name": "PublicIPAddress",
"outbound_rules": [],
"private_ip_address": "",
"private_ip_address_allocation": "Dynamic",
"private_ip_address_version": "",
"public_ip_address_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/publicIPAddresses/PublicIP",
"public_ip_prefix_id": "",
"subnet_id": "",
"zones": []
}
],
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb",
"location": "westus",
"name": "015-lb",
"private_ip_address": "",
"private_ip_addresses": [],
"resource_group_name": "015-resources",
"sku": "Basic",
"tags": null,
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_public_ip.external",
"azurerm_resource_group.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_lb_backend_address_pool",
"name": "main-lb",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"backend_address": [],
"backend_ip_configurations": [],
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/backendAddressPools/BackEndAddressPool",
"load_balancing_rules": [],
"loadbalancer_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb",
"name": "BackEndAddressPool",
"outbound_rules": [],
"resource_group_name": "015-resources",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_lb.main-lb",
"azurerm_public_ip.external",
"azurerm_resource_group.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_lb_nat_rule",
"name": "main-lb",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"backend_ip_configuration_id": "",
"backend_port": 80,
"enable_floating_ip": false,
"enable_tcp_reset": false,
"frontend_ip_configuration_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/frontendIPConfigurations/PublicIPAddress",
"frontend_ip_configuration_name": "PublicIPAddress",
"frontend_port": 80,
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/inboundNatRules/HTTPAccess",
"idle_timeout_in_minutes": 4,
"loadbalancer_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb",
"name": "HTTPAccess",
"protocol": "Tcp",
"resource_group_name": "015-resources",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_lb.main-lb",
"azurerm_public_ip.external",
"azurerm_resource_group.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_linux_virtual_machine",
"name": "main",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"index_key": 0,
"schema_version": 0,
"attributes": {
"additional_capabilities": [],
"admin_password": "Py1j#3341",
"admin_ssh_key": [],
"admin_username": "azureuser",
"allow_extension_operations": true,
"availability_set_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/availabilitySets/015AVAILSET",
"boot_diagnostics": [],
"computer_name": "015-1-vm",
"custom_data": null,
"dedicated_host_id": "",
"disable_password_authentication": false,
"encryption_at_host_enabled": false,
"eviction_policy": "",
"extensions_time_budget": "PT1H30M",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/virtualMachines/015-1-vm",
"identity": [],
"license_type": "",
"location": "westus",
"max_bid_price": -1,
"name": "015-1-vm",
"network_interface_ids": [
"/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic0"
],
"os_disk": [
{
"caching": "ReadWrite",
"diff_disk_settings": [],
"disk_encryption_set_id": "",
"disk_size_gb": 30,
"name": "015-1-vm_OsDisk_1_ca6ff38aba9043e4ae48e49a3be7f15b",
"storage_account_type": "Standard_LRS",
"write_accelerator_enabled": false
}
],
"plan": [],
"platform_fault_domain": -1,
"priority": "Regular",
"private_ip_address": "10.0.2.5",
"private_ip_addresses": [
"10.0.2.5"
],
"provision_vm_agent": true,
"proximity_placement_group_id": "",
"public_ip_address": "",
"public_ip_addresses": [],
"resource_group_name": "015-resources",
"secret": [],
"size": "Standard_B1s",
"source_image_id": "",
"source_image_reference": [
{
"offer": "UbuntuServer",
"publisher": "Canonical",
"sku": "18.04-LTS",
"version": "latest"
}
],
"tags": {
"Tag Name": "yep I put a tag here",
"environment": "Production"
},
"timeouts": null,
"virtual_machine_id": "d0a60a1b-7a07-4d38-9243-810c467558a4",
"virtual_machine_scale_set_id": "",
"zone": ""
},
"sensitive_attributes": [
[
{
"type": "get_attr",
"value": "admin_password"
}
]
],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoyNzAwMDAwMDAwMDAwLCJkZWxldGUiOjI3MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoyNzAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_availability_set.availSet",
"azurerm_network_interface.main",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 1,
"schema_version": 0,
"attributes": {
"additional_capabilities": [],
"admin_password": "Py1j#3341",
"admin_ssh_key": [],
"admin_username": "azureuser",
"allow_extension_operations": true,
"availability_set_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/availabilitySets/015AVAILSET",
"boot_diagnostics": [],
"computer_name": "015-2-vm",
"custom_data": null,
"dedicated_host_id": "",
"disable_password_authentication": false,
"encryption_at_host_enabled": false,
"eviction_policy": "",
"extensions_time_budget": "PT1H30M",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/virtualMachines/015-2-vm",
"identity": [],
"license_type": "",
"location": "westus",
"max_bid_price": -1,
"name": "015-2-vm",
"network_interface_ids": [
"/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic1"
],
"os_disk": [
{
"caching": "ReadWrite",
"diff_disk_settings": [],
"disk_encryption_set_id": "",
"disk_size_gb": 30,
"name": "015-2-vm_OsDisk_1_cdaaabbae6274da49fb78b9827267ad3",
"storage_account_type": "Standard_LRS",
"write_accelerator_enabled": false
}
],
"plan": [],
"platform_fault_domain": -1,
"priority": "Regular",
"private_ip_address": "10.0.2.4",
"private_ip_addresses": [
"10.0.2.4"
],
"provision_vm_agent": true,
"proximity_placement_group_id": "",
"public_ip_address": "",
"public_ip_addresses": [],
"resource_group_name": "015-resources",
"secret": [],
"size": "Standard_B1s",
"source_image_id": "",
"source_image_reference": [
{
"offer": "UbuntuServer",
"publisher": "Canonical",
"sku": "18.04-LTS",
"version": "latest"
}
],
"tags": {
"Tag Name": "yep I put a tag here",
"environment": "Production"
},
"timeouts": null,
"virtual_machine_id": "058865ee-2c33-43bf-816f-cef362b35887",
"virtual_machine_scale_set_id": "",
"zone": ""
},
"sensitive_attributes": [
[
{
"type": "get_attr",
"value": "admin_password"
}
]
],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoyNzAwMDAwMDAwMDAwLCJkZWxldGUiOjI3MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoyNzAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_availability_set.availSet",
"azurerm_network_interface.main",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 2,
"schema_version": 0,
"attributes": {
"additional_capabilities": [],
"admin_password": "Py1j#3341",
"admin_ssh_key": [],
"admin_username": "azureuser",
"allow_extension_operations": true,
"availability_set_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/availabilitySets/015AVAILSET",
"boot_diagnostics": [],
"computer_name": "015-3-vm",
"custom_data": null,
"dedicated_host_id": "",
"disable_password_authentication": false,
"encryption_at_host_enabled": false,
"eviction_policy": "",
"extensions_time_budget": "PT1H30M",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/virtualMachines/015-3-vm",
"identity": [],
"license_type": "",
"location": "westus",
"max_bid_price": -1,
"name": "015-3-vm",
"network_interface_ids": [
"/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic2"
],
"os_disk": [
{
"caching": "ReadWrite",
"diff_disk_settings": [],
"disk_encryption_set_id": "",
"disk_size_gb": 30,
"name": "015-3-vm_OsDisk_1_ff9a0640094641a8901ea09e71f8fa60",
"storage_account_type": "Standard_LRS",
"write_accelerator_enabled": false
}
],
"plan": [],
"platform_fault_domain": -1,
"priority": "Regular",
"private_ip_address": "10.0.2.6",
"private_ip_addresses": [
"10.0.2.6"
],
"provision_vm_agent": true,
"proximity_placement_group_id": "",
"public_ip_address": "",
"public_ip_addresses": [],
"resource_group_name": "015-resources",
"secret": [],
"size": "Standard_B1s",
"source_image_id": "",
"source_image_reference": [
{
"offer": "UbuntuServer",
"publisher": "Canonical",
"sku": "18.04-LTS",
"version": "latest"
}
],
"tags": {
"Tag Name": "yep I put a tag here",
"environment": "Production"
},
"timeouts": null,
"virtual_machine_id": "229c75fd-da4d-4d46-aef5-e96af0951fd8",
"virtual_machine_scale_set_id": "",
"zone": ""
},
"sensitive_attributes": [
[
{
"type": "get_attr",
"value": "admin_password"
}
]
],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoyNzAwMDAwMDAwMDAwLCJkZWxldGUiOjI3MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoyNzAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_availability_set.availSet",
"azurerm_network_interface.main",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_managed_disk",
"name": "datadisk",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"create_option": "Empty",
"disk_access_id": "",
"disk_encryption_set_id": "",
"disk_iops_read_write": 500,
"disk_mbps_read_write": 60,
"disk_size_gb": 15,
"encryption_settings": [],
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/disks/datadisk",
"image_reference_id": "",
"location": "westus",
"name": "datadisk",
"network_access_policy": null,
"os_type": "",
"resource_group_name": "015-resources",
"source_resource_id": "",
"source_uri": "",
"storage_account_id": "",
"storage_account_type": "Standard_LRS",
"tags": null,
"tier": "",
"timeouts": null,
"zones": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_resource_group.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_network_interface",
"name": "main",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"index_key": 0,
"schema_version": 0,
"attributes": {
"applied_dns_servers": [],
"dns_servers": [],
"enable_accelerated_networking": false,
"enable_ip_forwarding": false,
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic0",
"internal_dns_name_label": "",
"internal_domain_name_suffix": "mi5ypgmt302exdug3xkzdlbwfh.dx.internal.cloudapp.net",
"ip_configuration": [
{
"name": "internal",
"primary": true,
"private_ip_address": "10.0.2.5",
"private_ip_address_allocation": "Dynamic",
"private_ip_address_version": "IPv4",
"public_ip_address_id": "",
"subnet_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/virtualNetworks/015-network/subnets/internal"
}
],
"location": "westus",
"mac_address": "",
"name": "015-nic0",
"private_ip_address": "10.0.2.5",
"private_ip_addresses": [
"10.0.2.5"
],
"resource_group_name": "015-resources",
"tags": null,
"timeouts": null,
"virtual_machine_id": ""
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 1,
"schema_version": 0,
"attributes": {
"applied_dns_servers": [],
"dns_servers": [],
"enable_accelerated_networking": false,
"enable_ip_forwarding": false,
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic1",
"internal_dns_name_label": "",
"internal_domain_name_suffix": "mi5ypgmt302exdug3xkzdlbwfh.dx.internal.cloudapp.net",
"ip_configuration": [
{
"name": "internal",
"primary": true,
"private_ip_address": "10.0.2.4",
"private_ip_address_allocation": "Dynamic",
"private_ip_address_version": "IPv4",
"public_ip_address_id": "",
"subnet_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/virtualNetworks/015-network/subnets/internal"
}
],
"location": "westus",
"mac_address": "",
"name": "015-nic1",
"private_ip_address": "10.0.2.4",
"private_ip_addresses": [
"10.0.2.4"
],
"resource_group_name": "015-resources",
"tags": null,
"timeouts": null,
"virtual_machine_id": ""
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 2,
"schema_version": 0,
"attributes": {
"applied_dns_servers": [],
"dns_servers": [],
"enable_accelerated_networking": false,
"enable_ip_forwarding": false,
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic2",
"internal_dns_name_label": "",
"internal_domain_name_suffix": "mi5ypgmt302exdug3xkzdlbwfh.dx.internal.cloudapp.net",
"ip_configuration": [
{
"name": "internal",
"primary": true,
"private_ip_address": "10.0.2.6",
"private_ip_address_allocation": "Dynamic",
"private_ip_address_version": "IPv4",
"public_ip_address_id": "",
"subnet_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/virtualNetworks/015-network/subnets/internal"
}
],
"location": "westus",
"mac_address": "",
"name": "015-nic2",
"private_ip_address": "10.0.2.6",
"private_ip_addresses": [
"10.0.2.6"
],
"resource_group_name": "015-resources",
"tags": null,
"timeouts": null,
"virtual_machine_id": ""
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_network_interface_backend_address_pool_association",
"name": "main-lb",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"index_key": 0,
"schema_version": 0,
"attributes": {
"backend_address_pool_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/backendAddressPools/BackEndAddressPool",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic0/ipConfigurations/internal|/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/backendAddressPools/BackEndAddressPool",
"ip_configuration_name": "internal",
"network_interface_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic0",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_lb.main-lb",
"azurerm_lb_backend_address_pool.main-lb",
"azurerm_network_interface.main",
"azurerm_public_ip.external",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 1,
"schema_version": 0,
"attributes": {
"backend_address_pool_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/backendAddressPools/BackEndAddressPool",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic1/ipConfigurations/internal|/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/backendAddressPools/BackEndAddressPool",
"ip_configuration_name": "internal",
"network_interface_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic1",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_lb.main-lb",
"azurerm_lb_backend_address_pool.main-lb",
"azurerm_network_interface.main",
"azurerm_public_ip.external",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 2,
"schema_version": 0,
"attributes": {
"backend_address_pool_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/backendAddressPools/BackEndAddressPool",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic2/ipConfigurations/internal|/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/loadBalancers/015-lb/backendAddressPools/BackEndAddressPool",
"ip_configuration_name": "internal",
"network_interface_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic2",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_lb.main-lb",
"azurerm_lb_backend_address_pool.main-lb",
"azurerm_network_interface.main",
"azurerm_public_ip.external",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_network_interface_security_group_association",
"name": "main-sg",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"index_key": 0,
"schema_version": 0,
"attributes": {
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic0|/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"network_interface_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic0",
"network_security_group_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_network_interface.main",
"azurerm_network_security_group.main-sg",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 1,
"schema_version": 0,
"attributes": {
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic1|/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"network_interface_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic1",
"network_security_group_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_network_interface.main",
"azurerm_network_security_group.main-sg",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 2,
"schema_version": 0,
"attributes": {
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic2|/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"network_interface_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkInterfaces/015-nic2",
"network_security_group_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_network_interface.main",
"azurerm_network_security_group.main-sg",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_network_security_group",
"name": "main-sg",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"index_key": 0,
"schema_version": 0,
"attributes": {
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"location": "westus",
"name": "main-sg",
"resource_group_name": "015-resources",
"security_rule": [
{
"access": "Allow",
"description": "",
"destination_address_prefix": "10.0.2.5",
"destination_address_prefixes": [],
"destination_application_security_group_ids": [],
"destination_port_range": "*",
"destination_port_ranges": [],
"direction": "Inbound",
"name": "internal-traffic",
"priority": 100,
"protocol": "Tcp",
"source_address_prefix": "10.0.0.0/22",
"source_address_prefixes": [],
"source_application_security_group_ids": [],
"source_port_range": "*",
"source_port_ranges": []
}
],
"tags": null,
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_network_interface.main",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 1,
"schema_version": 0,
"attributes": {
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"location": "westus",
"name": "main-sg",
"resource_group_name": "015-resources",
"security_rule": [
{
"access": "Allow",
"description": "",
"destination_address_prefix": "10.0.2.4",
"destination_address_prefixes": [],
"destination_application_security_group_ids": [],
"destination_port_range": "*",
"destination_port_ranges": [],
"direction": "Inbound",
"name": "internal-traffic",
"priority": 100,
"protocol": "Tcp",
"source_address_prefix": "10.0.0.0/22",
"source_address_prefixes": [],
"source_application_security_group_ids": [],
"source_port_range": "*",
"source_port_ranges": []
}
],
"tags": null,
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_network_interface.main",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
},
{
"index_key": 2,
"schema_version": 0,
"attributes": {
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/networkSecurityGroups/main-sg",
"location": "westus",
"name": "main-sg",
"resource_group_name": "015-resources",
"security_rule": [
{
"access": "Allow",
"description": "",
"destination_address_prefix": "10.0.2.6",
"destination_address_prefixes": [],
"destination_application_security_group_ids": [],
"destination_port_range": "*",
"destination_port_ranges": [],
"direction": "Inbound",
"name": "internal-traffic",
"priority": 100,
"protocol": "Tcp",
"source_address_prefix": "10.0.0.0/22",
"source_address_prefixes": [],
"source_application_security_group_ids": [],
"source_port_range": "*",
"source_port_ranges": []
}
],
"tags": null,
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_network_interface.main",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_public_ip",
"name": "external",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"allocation_method": "Static",
"availability_zone": "No-Zone",
"domain_name_label": null,
"fqdn": null,
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/publicIPAddresses/PublicIP",
"idle_timeout_in_minutes": 4,
"ip_address": "13.91.247.55",
"ip_tags": null,
"ip_version": "IPv4",
"location": "westus",
"name": "PublicIP",
"public_ip_prefix_id": null,
"resource_group_name": "015-resources",
"reverse_fqdn": null,
"sku": "Basic",
"sku_tier": "Regional",
"tags": {
"environment": "Production"
},
"timeouts": null,
"zones": []
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_resource_group.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_resource_group",
"name": "main",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources",
"location": "westus",
"name": "015-resources",
"tags": {
"environment": "Production"
},
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo1NDAwMDAwMDAwMDAwLCJkZWxldGUiOjU0MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjo1NDAwMDAwMDAwMDAwfX0="
}
]
},
{
"mode": "managed",
"type": "azurerm_subnet",
"name": "internal",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"address_prefix": "10.0.2.0/24",
"address_prefixes": [
"10.0.2.0/24"
],
"delegation": [],
"enforce_private_link_endpoint_network_policies": false,
"enforce_private_link_service_network_policies": false,
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/virtualNetworks/015-network/subnets/internal",
"name": "internal",
"resource_group_name": "015-resources",
"service_endpoint_policy_ids": null,
"service_endpoints": null,
"timeouts": null,
"virtual_network_name": "015-network"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_resource_group.main",
"azurerm_virtual_network.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_virtual_machine_data_disk_attachment",
"name": "datadisk",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"index_key": 1,
"schema_version": 0,
"attributes": {
"caching": "None",
"create_option": "Attach",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/virtualMachines/015-2-vm/dataDisks/datadisk",
"lun": 0,
"managed_disk_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/disks/datadisk",
"timeouts": null,
"virtual_machine_id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Compute/virtualMachines/015-2-vm",
"write_accelerator_enabled": false
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=",
"dependencies": [
"azurerm_availability_set.availSet",
"azurerm_linux_virtual_machine.main",
"azurerm_managed_disk.datadisk",
"azurerm_network_interface.main",
"azurerm_resource_group.main",
"azurerm_subnet.internal",
"azurerm_virtual_network.main"
]
}
]
},
{
"mode": "managed",
"type": "azurerm_virtual_network",
"name": "main",
"provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"address_space": [
"10.0.0.0/22"
],
"bgp_community": "",
"ddos_protection_plan": [],
"dns_servers": [],
"guid": "99873f62-ee93-4bb8-8e86-edd591ac362f",
"id": "/subscriptions/8f0b057f-c046-4551-805c-40b1c861f499/resourceGroups/015-resources/providers/Microsoft.Network/virtualNetworks/015-network",
"location": "westus",
"name": "015-network",
"resource_group_name": "015-resources",