forked from robotechredmond/Azure-PowerShell-Snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AzureRM - Export IaaS Deployment.ps1
132 lines (81 loc) · 4.51 KB
/
AzureRM - Export IaaS Deployment.ps1
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
#-------------------------------------------------------------------------
# Copyright (c) Microsoft. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#--------------------------------------------------------------------------
# Sign-in to Azure via Azure Resource Manager
# Note: Requires minimum of "Reader" RBAC permissions to resource group and resources being exported
Login-AzureRmAccount
# Select Azure Subscription
$subscriptionId =
( Get-AzureRmSubscription |
Out-GridView `
-Title "Select an Azure Subscription ..." `
-PassThru
).SubscriptionId
Select-AzureRmSubscription `
-SubscriptionId $subscriptionId
# Select Azure Resource Group from which to export VM configurations
$rgName =
( Get-AzureRmResourceGroup |
Out-GridView `
-Title "Select an Azure Resource Group ..." `
-PassThru
).ResourceGroupName
# Enter filename for export
$reportDate = Get-Date -Format yyyyMMdd
$defaultExportFile = $filename = ".\export-${subscriptionId}-${reportDate}.csv"
$exportFile = Read-Host -Prompt "Export Filename (default=${defaultExportFile})"
if (!$exportFile) {
$exportFile = $defaultExportFile
}
# Export VM deployment configuration
Write-Output "rgName,vmName,vmLocation,vmSize,asName,vmFd,vmUd,vmAgentVersion,numDataDisks,vmStorageAccountName,vmStorageAccountHost,vmVnet,vmSubnet,vmNicPrivateIp,vmNicPrivateIpAlloc,vmNicNsgName,vmNicPublicIp,vmNicPublicIpAlloc" >$exportFile
[array]$vms = Get-AzureRmVM -ResourceGroupName $rgName -ErrorAction Stop
$vmCount = $vms.Count
$vmCurrent = 0
$vms | % {
$vmCurrent++
$vmRgName = $_.ResourceGroupName
$vmName = $_.Name
Write-Progress -Activity "Export VM configurations ..." -CurrentOperation "$vmName ..." -PercentComplete ($vmCurrent/$vmCount*100) -SecondsRemaining -1
$vmLocation = $_.Location
$vmSize = $_.HardwareProfile.VmSize
$asName = $null
If ($_.AvailabilitySetReference.Id) {
$asName = (Get-AzureRmResource -ResourceId $_.AvailabilitySetReference.Id).Name
}
$vmStatus = Get-AzureRmVM -ResourceGroupName $_.ResourceGroupName -Name $_.Name -Status
$vmFd = $vmStatus.PlatformFaultDomain
$vmUd = $vmStatus.PlatformUpdateDomain
$vmAgentVersion = $vmStatus.VMAgent.VmAgentVersion
$numDataDisks = $_.DataDiskNames.Count
$vmNic = Get-AzureRmResource -ResourceId $_.NetworkInterfaceIDs[0]
$vmNicName = $vmNic.Name
$vmNicIpCfg = (Get-AzureRmResource -ResourceId $vmNic.Properties.IpConfigurations[0].Id -ApiVersion '2016-09-01')
$vmVnet = $vmNicIpCfg.Properties.Subnet.Id.Split('/')[8]
$vmSubnet = $vmNicIpCfg.Properties.Subnet.Id.Split('/')[10]
$vmNicPrivateIp = $vmNicIpCfg.Properties.PrivateIPAddress
$vmNicPrivateIpAlloc = $vmNicIpCfg.Properties.PrivateIPAllocationMethod
$vmNicPublicIp = $null
$vmNicPublicIpAlloc = $null
If ($vmNicIpCfg.Properties.PublicIpAddress) {
$vmNicPublicIpCfg = Get-AzureRmResource -ResourceId $vmNicIpCfg.Properties.PublicIPAddress.Id
$vmNicPublicIp = $vmNicPublicIpCfg.Properties.IpAddress
$vmNicPublicIpAlloc = $vmNicPublicIpCfg.Properties.PublicIpAllocationMethod
}
$vmNicNsgName = (Get-AzureRmResource -ResourceId $vmNic.Properties.NetworkSecurityGroup.Id).Name
$vmStorageAccountName = $_.StorageProfile.OSDisk.Vhd.Uri.Split('/.')[2]
$vmStorageAccountFqdn = $_.StorageProfile.OSDisk.Vhd.Uri.Split('/')[2]
$vmStorageAccountHost = (Resolve-DnsName $vmStorageAccountFqdn).NameHost.Split('.')[1]
Write-Output "$vmRgName,$vmName,$vmLocation,$vmSize,$asName,$vmFd,$vmUd,$vmAgentVersion,$numDataDisks,$vmStorageAccountName,$vmStorageAccountHost,$vmVnet,$vmSubnet,$vmNicPrivateIp,$vmNicPrivateIpAlloc,$vmNicNsgName,$vmNicPublicIp,$vmNicPublicIpAlloc" -ErrorAction Stop >>$exportFile
}