-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCreate an Azure VM.ps1
132 lines (99 loc) · 3.39 KB
/
Create an Azure VM.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
$applicationId = 'your Application ID'
$tenantId = 'your Tenant ID'
$secret = 'your Secret'
$subscriptionId = 'your Subscription ID'
#VM Details
$RessourceGroupName = "RG_TEST_TechguyNewVM"
$VMname = "TESTVM"
$NetworkInterfaceName = "TESTVM-NIC"
$vmSize="Standard_D1_v2"
#Location
$Location = "northeurope"
#Image Settings
$publisher = "MicrosoftWindowsServer"
$offer = "WindowsServer"
$sku = "2019-Datacenter"
$version = "latest"
#VM Login
$User="User"
$PW="superSa3PW!"
#API Version
$apiversion="2021-03-01"
#Microsoft Azure Rest API authentication
#https://docs.microsoft.com/en-us/rest/api/azure/
$param = @{
Uri = "https://login.microsoftonline.com/$tenantId/oauth2/token?api-version=$apiversion";
Method = 'Post';
Body = @{
grant_type = 'client_credentials';
resource = 'https://management.core.windows.net/';
client_id = $applicationId;
client_secret = $secret
}
}
$result = Invoke-RestMethod @param
$token = $result.access_token
$headers = @{
"Authorization" = "Bearer $($token)"
"Content-type" = "application/json"
}
$URL = "https://management.azure.com/subscriptions/$subscriptionId/resourceGroups/$RessourceGroupName/providers/Microsoft.Compute/virtualMachines/$($VMname)?api-version=$apiversion"
$bodyNewVMexistingNetwork = @"
{
"location": "$location",
"properties": {
"hardwareProfile": {
"vmSize": "$VMsize"
},
"storageProfile": {
"imageReference": {
"sku": "$sku",
"publisher": "$publisher",
"version": "$version",
"offer": "$offer"
},
"osDisk": {
"caching": "ReadWrite",
"managedDisk": {
"storageAccountType": "Standard_LRS"
},
"name": "myVMosdisk",
"createOption": "FromImage"
}
},
"osProfile": {
"adminUsername": "$User",
"computerName": "$VMname",
"adminPassword": "$PW"
},
"networkProfile": {
"networkInterfaces": [
{
"id": "/subscriptions/$subscriptionId/resourceGroups/$RessourceGroupName/providers/Microsoft.Network/networkInterfaces/$NetworkInterfaceName",
"properties": {
"primary": true
}
}
]
}
}
}
}
}
"@
Invoke-RestMethod -Method PUT -URI $URL -headers $headers -body $bodyNewVMexistingNetwork
### Get Status
do {
$URLtoGet = "https://management.azure.com/subscriptions/$subscriptionId/resourceGroups/$RessourceGroupName/providers/Microsoft.Compute/virtualMachines/$($VMname)?api-version=$apiversion"
$Result = Invoke-RestMethod -Method GET -URI $URLtoGet -headers $headers
$result.properties.provisioningState
Start-Sleep -Seconds 5
} until ($result.properties.provisioningState -ne "Creating")
Connect-AzAccount
Get-AzVMImagePublisher -Location $Location | Select PublisherName
Get-AzVMImageOffer -Location $Location -PublisherName $publisher | select Offer
Get-AzVMImageSku -Location $Location -PublisherName $publisher -Offer $offer | select SKUS
Get-AzVMImage -Location $Location -PublisherName $publisher -Offer $offer -Sku $sku | Select Version
##
#
#Get-AzVMImage -Location $Location -PublisherName $publisher -Offer $offer -Skus $sku -Version $version