-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnsgs.tf
126 lines (110 loc) · 4.55 KB
/
nsgs.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
resource "azurerm_resource_group" "nsgs" {
name = "NSGs"
location = "${var.loc}"
tags = "${var.tags}"
}
resource "azurerm_network_security_group" "resource_group_default" {
name = "ResourceGroupDefault"
resource_group_name = "${azurerm_resource_group.nsgs.name}"
location = "${azurerm_resource_group.nsgs.location}"
tags = "${azurerm_resource_group.nsgs.tags}"
}
resource "azurerm_network_security_rule" "AllowSSH" {
name = "AllowSSH"
resource_group_name = "${azurerm_resource_group.nsgs.name}"
network_security_group_name = "${azurerm_network_security_group.resource_group_default.name}"
priority = 1010
access = "Allow"
direction = "Inbound"
protocol = "Tcp"
destination_port_range = 22
destination_address_prefix = "*"
source_port_range = "*"
source_address_prefix = "*"
}
resource "azurerm_network_security_rule" "AllowHTTP" {
name = "AllowHTTP"
resource_group_name = "${azurerm_resource_group.nsgs.name}"
network_security_group_name = "${azurerm_network_security_group.resource_group_default.name}"
priority = 1020
access = "Allow"
direction = "Inbound"
protocol = "Tcp"
destination_port_range = 80
destination_address_prefix = "*"
source_port_range = "*"
source_address_prefix = "*"
}
resource "azurerm_network_security_rule" "AllowHTTPS" {
name = "AllowHTTPS"
resource_group_name = "${azurerm_resource_group.nsgs.name}"
network_security_group_name = "${azurerm_network_security_group.resource_group_default.name}"
priority = 1021
access = "Allow"
direction = "Inbound"
protocol = "Tcp"
destination_port_range = 443
destination_address_prefix = "*"
source_port_range = "*"
source_address_prefix = "*"
}
resource "azurerm_network_security_rule" "AllowSQLServer" {
name = "AllowSQLServer"
resource_group_name = "${azurerm_resource_group.nsgs.name}"
network_security_group_name = "${azurerm_network_security_group.resource_group_default.name}"
priority = 1030
access = "Allow"
direction = "Inbound"
protocol = "Tcp"
destination_port_range = 1443
destination_address_prefix = "*"
source_port_range = "*"
source_address_prefix = "*"
}
resource "azurerm_network_security_rule" "AllowRDP" {
name = "AllowRDP"
resource_group_name = "${azurerm_resource_group.nsgs.name}"
network_security_group_name = "${azurerm_network_security_group.resource_group_default.name}"
priority = 100
access = "Allow"
direction = "Inbound"
protocol = "Tcp"
destination_port_range = 3389
destination_address_prefix = "*"
source_port_range = "*"
source_address_prefix = "*"
}
resource "azurerm_network_security_group" "nic_ubuntu" {
name = "NIC_Ubuntu"
resource_group_name = "${azurerm_resource_group.nsgs.name}"
location = "${azurerm_resource_group.nsgs.location}"
tags = "${azurerm_resource_group.nsgs.tags}"
security_rule {
name = "SSH"
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = 22
source_address_prefix = "*"
destination_address_prefix = "*"
}
}
resource "azurerm_network_security_group" "nic_windows" {
name = "NIC_Windows"
resource_group_name = "${azurerm_resource_group.nsgs.name}"
location = "${azurerm_resource_group.nsgs.location}"
tags = "${azurerm_resource_group.nsgs.tags}"
security_rule {
name = "RDP"
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = 3389
source_address_prefix = "*"
destination_address_prefix = "*"
}
}