-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathwindows-vm-main.tf
103 lines (89 loc) · 2.91 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
###################################
## Virtual Machine Module - Main ##
###################################
# Bootstrapping PowerShell Script
data "template_file" "windows-userdata" {
template = <<EOF
<powershell>
# Rename Machine
Rename-Computer -NewName "${var.windows_instance_name}" -Force;
# Install IIS
Install-WindowsFeature -name Web-Server -IncludeManagementTools;
# Restart machine
shutdown -r -t 10;
</powershell>
EOF
}
# Create EC2 Instance
resource "aws_instance" "windows-server" {
ami = data.aws_ami.windows-2019.id
instance_type = var.windows_instance_type
subnet_id = aws_subnet.public-subnet.id
vpc_security_group_ids = [aws_security_group.aws-windows-sg.id]
associate_public_ip_address = var.windows_associate_public_ip_address
source_dest_check = false
key_name = aws_key_pair.key_pair.key_name
user_data = data.template_file.windows-userdata.rendered
# root disk
root_block_device {
volume_size = var.windows_root_volume_size
volume_type = var.windows_root_volume_type
delete_on_termination = true
encrypted = true
}
# extra disk
ebs_block_device {
device_name = "/dev/xvda"
volume_size = var.windows_data_volume_size
volume_type = var.windows_data_volume_type
encrypted = true
delete_on_termination = true
}
tags = {
Name = "${lower(var.app_name)}-${var.app_environment}-windows-server"
Environment = var.app_environment
}
}
# Create Elastic IP for the EC2 instance
resource "aws_eip" "windows-eip" {
vpc = true
tags = {
Name = "${lower(var.app_name)}-${var.app_environment}-windows-eip"
Environment = var.app_environment
}
}
# Associate Elastic IP to Windows Server
resource "aws_eip_association" "windows-eip-association" {
instance_id = aws_instance.windows-server.id
allocation_id = aws_eip.windows-eip.id
}
# Define the security group for the Windows server
resource "aws_security_group" "aws-windows-sg" {
name = "${lower(var.app_name)}-${var.app_environment}-windows-sg"
description = "Allow incoming connections"
vpc_id = aws_vpc.vpc.id
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
description = "Allow incoming HTTP connections"
}
ingress {
from_port = 3389
to_port = 3389
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
description = "Allow incoming RDP connections"
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags = {
Name = "${lower(var.app_name)}-${var.app_environment}-windows-sg"
Environment = var.app_environment
}
}