forked from zakarel/azure-terraform-small-medium-lz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
132 lines (125 loc) · 4.12 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
# Creating resource groups for each VNET
resource "azurerm_resource_group" "rg-spoke" {
for_each = var.vnets
name = "rg-${each.value.name}-${var.product_name}"
location = var.location
tags = {
source = "terraform"
}
}
# Creating the VNETs
resource "azurerm_virtual_network" "vnet-spoke" {
for_each = var.vnets
name = "vnet-${each.value.name}-${var.product_name}"
address_space = [each.value.address_space]
location = azurerm_resource_group.rg-spoke[each.key].location
resource_group_name = azurerm_resource_group.rg-spoke[each.key].name
tags = {
source = "terraform"
}
# Creating the subnets under hub VNET
dynamic "subnet" {
for_each = each.key == keys(var.vnets)[0] ? local.subnets_hub : {}
content {
name = subnet.key
address_prefix = subnet.value.address_prefix
}
}
# Creating the subnets under prod VNET
dynamic "subnet" {
for_each = each.key == keys(var.vnets)[1] ? local.subnets_prod : {}
content {
name = subnet.key
address_prefix = subnet.value.address_prefix
}
}
# Creating the subnets under staging VNET
dynamic "subnet" {
for_each = each.key == keys(var.vnets)[2] ? local.subnets_staging : {}
content {
name = subnet.key
address_prefix = subnet.value.address_prefix
}
}
# Creating the subnets under dev VNET
dynamic "subnet" {
for_each = each.key == keys(var.vnets)[3] ? local.subnets_dev : {}
content {
name = subnet.key
address_prefix = subnet.value.address_prefix
}
}
}
# Creating the Network Security Groups
resource "azurerm_network_security_group" "nsg" {
for_each = var.vnets
name = "nsg-${each.value.name}-${var.product_name}"
location = var.location
resource_group_name = azurerm_resource_group.rg-spoke[each.key].name
security_rule {
name = "ssh"
priority = 100
direction = "Inbound"
access = "Deny"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "22"
source_address_prefix = "*"
destination_address_prefix = "*"
}
security_rule {
name = "rdp"
priority = 110
direction = "Inbound"
access = "Deny"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "3389"
source_address_prefix = "*"
destination_address_prefix = "*"
}
security_rule {
name = "http"
priority = 120
direction = "Inbound"
access = "Deny"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "80"
source_address_prefix = "*"
destination_address_prefix = "*"
}
security_rule {
name = "https"
priority = 130
direction = "Inbound"
access = "Deny"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "443"
source_address_prefix = "*"
destination_address_prefix = "*"
}
security_rule {
name = "allow_all_in_vnet_traffic"
priority = 140
direction = "Inbound"
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_range = "*"
source_address_prefix = "VirtualNetwork"
destination_address_prefix = "VirtualNetwork"
}
security_rule {
name = "allow_all_out_vnet_traffic"
priority = 150
direction = "Outbound"
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_range = "*"
source_address_prefix = "VirtualNetwork"
destination_address_prefix = "VirtualNetwork"
}
}