We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fcefc3 commit f289703Copy full SHA for f289703
1 file changed
aws/main.tf
@@ -286,6 +286,14 @@ resource "aws_security_group" "storage_nodes_sg" {
286
description = "access SNodeAPI from snode node workers"
287
}
288
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
+
297
ingress {
298
from_port = 8080
299
to_port = 8890
0 commit comments