-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
185 lines (157 loc) · 6.04 KB
/
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
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
185
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "4.4.0"
}
}
}
provider "azurerm" {
features {}
client_id = var.ARM_CLIENT_ID
client_secret = var.ARM_CLIENT_SECRET
subscription_id = var.ARM_SUBSCRIPTION_ID
tenant_id = var.ARM_TENANT_ID
}
resource "azurerm_resource_group" "mtc-rg" {
name = "mtc-resources"
location = "Australia East"
tags = {
environment = "Dev"
}
}
/*
resource "azurerm_virtual_network" "mtc-vn" {
name = "mtc-network"
resource_group_name = azurerm_resource_group.mtc-rg.name
location = azurerm_resource_group.mtc-rg.location
address_space = ["10.123.0.0/16"]
tags = {
environment = "Dev"
}
}
resource "azurerm_subnet" "mtc-subnet" {
name = "mtc-subnet"
resource_group_name = azurerm_resource_group.mtc-rg.name
virtual_network_name = azurerm_virtual_network.mtc-vn.name
address_prefixes = ["10.123.1.0/24"]
}
resource "azurerm_network_security_group" "mtc-sg" {
name = "mtc-sg"
location = azurerm_resource_group.mtc-rg.location
resource_group_name = azurerm_resource_group.mtc-rg.name
tags = {
environment = "dev"
}
}
resource "azurerm_network_security_rule" "mtc-dev-rule-ssh" {
name = "mtc-dev-rule"
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "Tcp" # Set the protocol to TCP for SSH
source_port_range = "*" # Allow traffic from any source port
destination_port_range = "22" # Allow traffic only on port 22 (SSH)
source_address_prefix = "*" # Allow traffic from any source IP address
destination_address_prefix = "*" # Allow traffic to any destination IP address
resource_group_name = azurerm_resource_group.mtc-rg.name
network_security_group_name = azurerm_network_security_group.mtc-sg.name
}
resource "azurerm_network_security_rule" "mtc-dev-rule-http" {
name = "mtc-dev-rule-http"
priority = 101
direction = "Inbound"
access = "Allow"
protocol = "Tcp" # Set the protocol to TCP for HTTP
source_port_range = "*" # Allow traffic from any source port
destination_port_range = "80" # Allow traffic only on port 80 (HTTP)
source_address_prefix = "*" # Allow traffic from any source IP address
destination_address_prefix = "*" # Allow traffic to any destination IP address
resource_group_name = azurerm_resource_group.mtc-rg.name
network_security_group_name = azurerm_network_security_group.mtc-sg.name
}
resource "azurerm_network_security_rule" "mtc-dev-rule-HTTPS" {
name = "mtc-dev-rule-https"
priority = 102
direction = "Inbound"
access = "Allow"
protocol = "Tcp" # Set the protocol to TCP for HTTP
source_port_range = "*" # Allow traffic from any source port
destination_port_range = "443" # Allow traffic only on port 443 (HTTPS)
source_address_prefix = "*" # Allow traffic from any source IP address
destination_address_prefix = "*" # Allow traffic to any destination IP address
resource_group_name = azurerm_resource_group.mtc-rg.name
network_security_group_name = azurerm_network_security_group.mtc-sg.name
}
resource "azurerm_subnet_network_security_group_association" "mtc-sga" {
subnet_id = azurerm_subnet.mtc-subnet.id
network_security_group_id = azurerm_network_security_group.mtc-sg.id
}
resource "azurerm_public_ip" "mtc-ip" {
name = "mtc-ip"
resource_group_name = azurerm_resource_group.mtc-rg.name
location = azurerm_resource_group.mtc-rg.location
allocation_method = "Static"
tags = {
environment = "dev"
}
}
resource "azurerm_network_interface" "mtc-nic" {
name = "mtc-nic"
location = azurerm_resource_group.mtc-rg.location
resource_group_name = azurerm_resource_group.mtc-rg.name
ip_configuration {
name = "internal"
subnet_id = azurerm_subnet.mtc-subnet.id
private_ip_address_allocation = "Dynamic"
public_ip_address_id = azurerm_public_ip.mtc-ip.id
}
tags = {
environment = "dev"
}
}
resource "azurerm_linux_virtual_machine" "mtc-vm" {
name = "mtc-vm"
resource_group_name = azurerm_resource_group.mtc-rg.name
location = azurerm_resource_group.mtc-rg.location
size = "Standard_B1s"
admin_username = "adminuser"
network_interface_ids = [
azurerm_network_interface.mtc-nic.id,
]
custom_data = filebase64("customdata.tpl")
admin_ssh_key {
username = "adminuser"
public_key = file(var.ssh_public_key_path)
}
os_disk {
caching = "ReadWrite"
storage_account_type = "Standard_LRS"
}
source_image_reference {
publisher = "Canonical"
offer = "0001-com-ubuntu-server-focal"
sku = "20_04-lts-gen2"
version = "latest"
}
#To enable SSH once provisioned
provisioner "local-exec" {
command = templatefile("${var.host_os}-ssh-script.tpl", {
hostname = self.public_ip_address,
user = "adminuser",
identityfile = "~/.ssh/mtcazurekey"
})
interpreter = var.host_os == "windows" ? ["Powershell", "-Command"] : ["bash", "-c"]
}
tags = {
environment = "dev"
}
}
data "azurerm_public_ip" "mtc-ip-data" {
name = azurerm_public_ip.mtc-ip.name
resource_group_name = azurerm_resource_group.mtc-rg.name
}
output "public_ip_address" {
value = "${azurerm_linux_virtual_machine.mtc-vm.name}: ${data.azurerm_public_ip.mtc-ip-data.ip_address}"
}
*/