-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfgt-network.tf
144 lines (123 loc) · 4.87 KB
/
fgt-network.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
resource "azurerm_network_interface" "fgtport1" {
name = "fgtport1"
location = var.region
resource_group_name = azurerm_resource_group.resource_group.name
enable_ip_forwarding = true
ip_configuration {
name = "ipconfig1"
subnet_id = azurerm_subnet.public_subnet.id
private_ip_address_allocation = "Static"
private_ip_address = var.fgtiface1
primary = true
public_ip_address_id = azurerm_public_ip.FGTPublicIp.id
}
tags = {}
}
resource "azurerm_network_interface" "fgtport2" {
name = "fgtport2"
location = var.region
resource_group_name = azurerm_resource_group.resource_group.name
enable_ip_forwarding = true
ip_configuration {
name = "ipconfig1"
subnet_id = azurerm_subnet.dmz_subnet.id
private_ip_address_allocation = "Static"
private_ip_address = var.fgtiface2
}
tags = {}
}
resource "azurerm_network_interface" "fgtport3" {
name = "fgtport3"
location = var.region
resource_group_name = azurerm_resource_group.resource_group.name
enable_ip_forwarding = true
ip_configuration {
name = "ipconfig1"
subnet_id = azurerm_subnet.internal_subnet.id
private_ip_address_allocation = "Static"
private_ip_address = var.fgtiface3
}
tags = {}
}
resource "azurerm_network_security_group" "publicnetworknsg" {
name = "PublicNetworkSecurityGroup"
location = var.region
resource_group_name = azurerm_resource_group.resource_group.name
security_rule {
name = "TCP"
priority = 1001
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "*"
source_address_prefix = "*"
destination_address_prefix = "*"
}
tags = {}
}
resource "azurerm_network_security_group" "privatenetworknsg" {
name = "PrivateNetworkSecurityGroup"
location = var.region
resource_group_name = azurerm_resource_group.resource_group.name
security_rule {
name = "All"
priority = 1001
direction = "Inbound"
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_range = "*"
source_address_prefix = "*"
destination_address_prefix = "*"
}
tags = {}
}
resource "azurerm_network_security_rule" "outgoing_public" {
name = "egress"
priority = 100
direction = "Outbound"
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_range = "*"
source_address_prefix = "*"
destination_address_prefix = "*"
resource_group_name = azurerm_resource_group.resource_group.name
network_security_group_name = azurerm_network_security_group.publicnetworknsg.name
}
resource "azurerm_network_security_rule" "outgoing_private" {
name = "egress-private"
priority = 100
direction = "Outbound"
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_range = "*"
source_address_prefix = "*"
destination_address_prefix = "*"
resource_group_name = azurerm_resource_group.resource_group.name
network_security_group_name = azurerm_network_security_group.privatenetworknsg.name
}
resource "azurerm_network_interface_security_group_association" "port1nsg" {
depends_on = [azurerm_network_interface.fgtport1]
network_interface_id = azurerm_network_interface.fgtport1.id
network_security_group_id = azurerm_network_security_group.publicnetworknsg.id
}
resource "azurerm_network_interface_security_group_association" "port2nsg" {
depends_on = [azurerm_network_interface.fgtport2]
network_interface_id = azurerm_network_interface.fgtport2.id
network_security_group_id = azurerm_network_security_group.privatenetworknsg.id
}
resource "azurerm_network_interface_security_group_association" "port3nsg" {
depends_on = [azurerm_network_interface.fgtport3]
network_interface_id = azurerm_network_interface.fgtport3.id
network_security_group_id = azurerm_network_security_group.privatenetworknsg.id
}
resource "azurerm_public_ip" "FGTPublicIp" {
name = "FGTPublicIP"
location = var.region
resource_group_name = azurerm_resource_group.resource_group.name
allocation_method = "Static"
tags = {}
}