-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwinsvr.tf
More file actions
185 lines (156 loc) · 5.72 KB
/
winsvr.tf
File metadata and controls
185 lines (156 loc) · 5.72 KB
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
# Declare of the Provider in main.tf
# This is create a Windows Server VM and install IIS
# Updated 2022.01.29 limgong
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.0" #latest is "2.94.0"
}
}
}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "ggResourcegroup" {
name = "example-resources"
location = "West Us"
tags = {
environment = "Windows Demo"
}
}
# Create virtual networks
resource "azurerm_virtual_network" "example-vnet" {
name = "example-network"
address_space = ["10.0.90.0/24"]
location = azurerm_resource_group.ggResourcegroup.location
resource_group_name = azurerm_resource_group.ggResourcegroup.name
tags = {
environment = "Windows Demo"
}
}
resource "azurerm_subnet" "ggSubnet02" {
name = "internal"
resource_group_name = azurerm_resource_group.ggResourcegroup.name
virtual_network_name = azurerm_virtual_network.example-vnet.name
address_prefixes = ["10.0.90.0/26"]
}
# Create public IPs
resource "azurerm_public_ip" "ggPublicIP02" {
name = "VM-ggVM02-pip"
location = azurerm_resource_group.ggResourcegroup.location
resource_group_name = azurerm_resource_group.ggResourcegroup.name
#allocation_method = "Dynamic" #Dynamic 이면 IP주소 표시 안됨
allocation_method = "Static"
tags = {
environment = "Windows Demo"
}
}
resource "azurerm_network_interface" "ggNic02" {
name = "VM-ggVM02-nic"
location = azurerm_resource_group.ggResourcegroup.location
resource_group_name = azurerm_resource_group.ggResourcegroup.name
ip_configuration {
name = "internal"
subnet_id = azurerm_subnet.ggSubnet02.id
private_ip_address_allocation = "Dynamic"
public_ip_address_id = azurerm_public_ip.ggPublicIP02.id
}
}
# Create Network Security Group and rule
resource "azurerm_network_security_group" "ggNsg02" {
name = "nsg-vnet02Subnet01"
location = azurerm_resource_group.ggResourcegroup.location
resource_group_name = azurerm_resource_group.ggResourcegroup.name
security_rule {
name = "HTTP"
priority = 1001
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "80"
source_address_prefix = "*"
destination_address_prefix = "*"
}
security_rule {
name = "RDP"
priority = 1002
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "3389"
source_address_prefix = "*" #After create, assign a source ip address
destination_address_prefix = "*"
}
tags = {
environment = "Windows Demo"
}
}
# Connect the security group to the network interface
resource "azurerm_network_interface_security_group_association" "ggNIC02asso" {
network_interface_id = azurerm_network_interface.ggNic02.id
network_security_group_id = azurerm_network_security_group.ggNsg02.id
}
resource "azurerm_windows_virtual_machine" "ggVM02" {
name = "VM-ggVM02-win"
resource_group_name = azurerm_resource_group.ggResourcegroup.name
location = azurerm_resource_group.ggResourcegroup.location
size = "Standard_D2ds_v5"
admin_username = var.admin_username
admin_password = var.admin_password
network_interface_ids = [azurerm_network_interface.ggNic02.id]
os_disk {
caching = "ReadWrite"
storage_account_type = "StandardSSD_LRS"
}
source_image_reference {
publisher = "MicrosoftWindowsServer"
offer = "WindowsServer"
sku = "2019-Datacenter"
version = "latest"
}
#boot_diagnostics {
# storage_account_uri = "https://${var.diagnostics_storage_account_name}.blob.core.windows.net"
#}
tags = var.default_tags
}
### Display output information
output "Windows2019_PublicIP" {
value = azurerm_public_ip.ggPublicIP02.ip_address
}
/*
resource "azurerm_virtual_machine_extension" "vm_extension_install_iis" {
name = "vm_extension_install_iis"
virtual_machine_id = azurerm_windows_virtual_machine.ggVM02.id
publisher = "Microsoft.Compute" #"Microsoft.Azure.Extensions"
type = "CustomScriptExtension"
type_handler_version = "2.0"
auto_upgrade_minor_version = true
settings = <<SETTINGS
{
"commandToExecute": "powershell -ExecutionPolicy Unrestricted Install-WindowsFeature -Name Web-Server -IncludeAllSubFeature -IncludeManagementTools"
}
SETTINGS
}
# Generate random text for a unique storage account name
resource "random_id" "randomId" {
keepers = {
# Generate a new ID only when a new resource group is defined
resource_group = azurerm_resource_group.myterraformgroup.name
}
byte_length = 8
}
# Create storage account for boot diagnostics
resource "azurerm_storage_account" "mystorageaccount" {
name = "diag${random_id.randomId.hex}"
resource_group_name = azurerm_resource_group.myterraformgroup.name
location = "eastus"
account_tier = "Standard"
account_replication_type = "LRS"
tags = {
environment = "Terraform Demo"
}
}
*/