Skip to content

Commit f289703

Browse files
authored
Update main.tf (#210)
1 parent 8fcefc3 commit f289703

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

aws/main.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,14 @@ resource "aws_security_group" "storage_nodes_sg" {
286286
description = "access SNodeAPI from snode node workers"
287287
}
288288

289+
ingress {
290+
from_port = 5001
291+
to_port = 5001
292+
protocol = "tcp"
293+
security_groups = [aws_security_group.mgmt_node_sg.id, aws_security_group.extra_nodes_sg.id]
294+
description = "access FireWall Proxy from mgmt and k3s nodes"
295+
}
296+
289297
ingress {
290298
from_port = 8080
291299
to_port = 8890

0 commit comments

Comments
 (0)