-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.bicep
140 lines (127 loc) · 3.16 KB
/
main.bicep
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
@description('The name of the virtual machine.')
param vmName string
@description('The admin username for the virtual machine.')
param adminUsername string
@description('The admin password for the virtual machine.')
@secure()
param adminPassword string
@description('The ID of the existing virtual network.')
param vnetId string
@description('The name of the existing subnet.')
param subnetName string
@description('The name of the public IP address.')
param publicIpName string
@description('The name of the Network Security Group.')
param nsgName string
@description('The location of the resources.')
param location string = resourceGroup().location
@description('The source IP address allowed for RDP access.')
param allowedRdpSourceIp string
resource publicIP 'Microsoft.Network/publicIPAddresses@2023-02-01' = {
name: publicIpName
location: location
sku: {
name: 'Basic'
}
properties: {
publicIPAllocationMethod: 'Dynamic'
}
}
resource nsg 'Microsoft.Network/networkSecurityGroups@2023-02-01' = {
name: nsgName
location: location
properties: {
securityRules: [
{
name: 'AllowRDP'
properties: {
priority: 1000
protocol: 'Tcp'
access: 'Allow'
direction: 'Inbound'
sourcePortRange: '*'
destinationPortRange: '3389'
sourceAddressPrefix: allowedRdpSourceIp
destinationAddressPrefix: '*'
}
}
]
}
}
resource nic 'Microsoft.Network/networkInterfaces@2023-02-01' = {
name: '${vmName}-nic'
location: location
properties: {
ipConfigurations: [
{
name: 'ipconfig1'
properties: {
subnet: {
id: '${vnetId}/subnets/${subnetName}'
}
publicIPAddress: {
id: publicIP.id
}
}
}
]
networkSecurityGroup: {
id: nsg.id
}
}
}
resource vm 'Microsoft.Compute/virtualMachines@2023-03-01' = {
name: vmName
location: location
properties: {
hardwareProfile: {
vmSize: 'Standard_D4s_v3'
}
osProfile: {
computerName: vmName
adminUsername: adminUsername
adminPassword: adminPassword
}
storageProfile: {
imageReference: {
publisher: 'MicrosoftWindowsDesktop'
offer: 'windows-11'
sku: 'win11-21h2-entn'
version: 'latest'
}
osDisk: {
createOption: 'FromImage'
managedDisk: {
storageAccountType: 'Premium_LRS'
}
diskSizeGB: 1024
}
}
networkProfile: {
networkInterfaces: [
{
id: nic.id
}
]
}
securityProfile: {
encryptionAtHost: true
}
}
}
resource customScriptExtension 'Microsoft.Compute/virtualMachines/extensions@2023-03-01' = {
parent: vm
name: 'CustomScriptExtension'
location: location
properties: {
publisher: 'Microsoft.Compute'
type: 'CustomScriptExtension'
typeHandlerVersion: '1.10'
settings: {
fileUris: [
'https://raw.githubusercontent.com/solliancenet/foundationallm-jbx/main/Install-FllmJbx.ps1'
]
commandToExecute: 'powershell -ExecutionPolicy Unrestricted -File Install-FllmJbx.ps1'
}
}
}