-
Notifications
You must be signed in to change notification settings - Fork 0
/
security.tf
166 lines (150 loc) · 5.67 KB
/
security.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
resource "azurerm_network_security_group" "sshNSG" {
name = "${var.suffix}sshNSG"
location = azurerm_resource_group.mainRG.location
resource_group_name = azurerm_resource_group.mainRG.name
# Using Lists
/*security_rule {
name = var.nsgDetailsList[0].name
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "TCP"
source_port_range = "*"
destination_port_range = var.nsgDetailsList[0].value
source_address_prefixes = var.sourceIPs
destination_address_prefix = "VirtualNetwork"
}
*/
# Using Maps
security_rule {
name = var.nsgDetails["ssh"].name
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "TCP"
source_port_range = "*"
destination_port_range = var.nsgDetails["ssh"].port
source_address_prefixes = var.sourceIPs
destination_address_prefix = "VirtualNetwork"
}
security_rule {
name = var.nsgDetails["http"].name
priority = 120
direction = "Inbound"
access = "Allow"
protocol = "TCP"
source_port_range = "*"
destination_port_range = var.nsgDetails["http"].port
source_address_prefixes = var.sourceIPs
destination_address_prefix = "VirtualNetwork"
}
security_rule {
name = var.nsgDetails["vault"].name
priority = 130
direction = "Inbound"
access = "Allow"
protocol = "TCP"
source_port_range = "*"
destination_port_range = var.nsgDetails["vault"].port
source_address_prefixes = var.sourceIPs
destination_address_prefix = "VirtualNetwork"
}
tags = var.tags
}
resource "azurerm_network_security_group" "rdpNSG" {
name = "${var.suffix}rdpNSG"
location = azurerm_resource_group.mainRG.location
resource_group_name = azurerm_resource_group.mainRG.name
security_rule {
name = var.nsgDetails["rdp"].name
priority = 110
direction = "Inbound"
access = "Allow"
protocol = "TCP"
source_port_range = "*"
destination_port_range = var.nsgDetails["rdp"].port
source_address_prefixes = var.sourceIPs
destination_address_prefix = "VirtualNetwork"
}
tags = var.tags
}
resource "azurerm_network_security_group" "httpNSG" {
name = "${var.suffix}httpNSG"
location = azurerm_resource_group.mainRG.location
resource_group_name = azurerm_resource_group.mainRG.name
security_rule {
name = var.nsgDetails["http"].name
priority = 120
direction = "Inbound"
access = "Allow"
protocol = "TCP"
source_port_range = "*"
destination_port_range = var.nsgDetails["http"].port
source_address_prefixes = var.sourceIPs
destination_address_prefix = "VirtualNetwork"
}
tags = var.tags
}
# All in one
/*resource "azurerm_network_security_group" "allNSG" {
name = "${var.suffix}All"
location = azurerm_resource_group.mainRG.location
resource_group_name = azurerm_resource_group.mainRG.name
security_rule {
name = var.nsgDetails["ssh"].name
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = var.nsgDetails["ssh"].port
source_address_prefixes = var.sourceIPs
destination_address_prefix = "VirtualNetwork"
}
security_rule {
name = var.nsgDetails["rdp"].name
priority = 110
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = var.nsgDetails["rdp"].port
source_address_prefixes = var.sourceIPs
destination_address_prefix = "VirtualNetwork"
}
security_rule {
name = var.nsgDetails["http"].name
priority = 120
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = var.nsgDetails["http"].port
source_address_prefix = "*"
destination_address_prefix = "VirtualNetwork"
}
security_rule {
name = var.nsgDetails["https"].name
priority = 130
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = var.nsgDetails["https"].port
source_address_prefix = "*"
destination_address_prefix = "VirtualNetwork"
}
security_rule {
name = var.nsgDetails["fileshare"].name
priority = 140
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = var.nsgDetails["fileshare"].port
source_address_prefix = "*"
destination_address_prefix = "VirtualNetwork"
}
tags = var.tags
}
*/