-
Notifications
You must be signed in to change notification settings - Fork 8
/
windows-vm-main.tf
128 lines (108 loc) · 4.15 KB
/
windows-vm-main.tf
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
#######################
## Windows VM - Main ##
#######################
# Generate randon name for the Windows VM
resource "random_string" "random-win-vm" {
length = 8
special = false
lower = true
upper = false
number = true
}
# Create Network Security Group to Access the Windows VM from Internet
resource "azurerm_network_security_group" "windows-vm-nsg" {
name = "${lower(replace(var.app_name," ","-"))}-${var.environment}-windows-vm-nsg"
location = azurerm_resource_group.network-rg.location
resource_group_name = azurerm_resource_group.network-rg.name
security_rule {
name = "allow-rdp"
description = "allow-rdp"
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "3389"
source_address_prefix = "Internet"
destination_address_prefix = "*"
}
security_rule {
name = "allow-http"
description = "allow-http"
priority = 110
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "80"
source_address_prefix = "Internet"
destination_address_prefix = "*"
}
tags = {
application = var.app_name
environment = var.environment
}
}
# Associate the NSG with the Subnet
resource "azurerm_subnet_network_security_group_association" "windows-vm-nsg-association" {
depends_on=[azurerm_network_security_group.windows-vm-nsg]
subnet_id = azurerm_subnet.network-subnet.id
network_security_group_id = azurerm_network_security_group.windows-vm-nsg.id
}
# Get a Static Public IP for the Windows VM
resource "azurerm_public_ip" "windows-vm-ip" {
name = "win-${random_string.random-win-vm.result}-vm-ip"
location = azurerm_resource_group.network-rg.location
resource_group_name = azurerm_resource_group.network-rg.name
allocation_method = "Static"
tags = {
application = var.app_name
environment = var.environment
}
}
# Create Network Card for the Windows VM
resource "azurerm_network_interface" "windows-vm-nic" {
depends_on=[azurerm_public_ip.windows-vm-ip]
name = "win-${random_string.random-win-vm.result}-vm-nic"
location = azurerm_resource_group.network-rg.location
resource_group_name = azurerm_resource_group.network-rg.name
ip_configuration {
name = "internal"
subnet_id = azurerm_subnet.network-subnet.id
private_ip_address_allocation = "Dynamic"
public_ip_address_id = azurerm_public_ip.windows-vm-ip.id
}
tags = {
application = var.app_name
environment = var.environment
}
}
# Create Windows Server
resource "azurerm_windows_virtual_machine" "windows-vm" {
depends_on=[azurerm_network_interface.windows-vm-nic]
name = "win-${random_string.random-win-vm.result}-vm"
location = azurerm_resource_group.network-rg.location
resource_group_name = azurerm_resource_group.network-rg.name
size = var.windows_vm_size
network_interface_ids = [azurerm_network_interface.windows-vm-nic.id]
computer_name = "win-${random_string.random-win-vm.result}-vm"
admin_username = var.windows_admin_username
admin_password = var.windows_admin_password
os_disk {
name = "win-${random_string.random-win-vm.result}-vm-os-disk"
caching = "ReadWrite"
storage_account_type = "Standard_LRS"
}
source_image_reference {
publisher = "MicrosoftWindowsServer"
offer = "WindowsServer"
sku = var.windows_2022_sku
version = "latest"
}
enable_automatic_updates = true
provision_vm_agent = true
tags = {
application = var.app_name
environment = var.environment
}
}