We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa02f35 + 7f7f622 commit 0ed2971Copy full SHA for 0ed2971
1 file changed
customer-managed/aws/terraform/security_groups.tf
@@ -64,12 +64,22 @@ resource "aws_security_group" "redpanda_node_group" {
64
65
locals {
66
rp_node_group_cidr_blocks = var.public_cluster ? [
67
+
68
+ // only used in the event that you want a public cluster, when the variable public_cluster is true
69
"0.0.0.0/0"
70
71
] : [
72
73
+ // RFC 6598 reserved prefix for shared address space
74
+ // https://datatracker.ietf.org/doc/html/rfc6598
75
"100.64.0.0/10",
76
77
+ // RFC 1918 reserved IP address space for private internets
78
+ // https://datatracker.ietf.org/doc/html/rfc1918
79
"172.16.0.0/12",
80
"192.168.0.0/16",
81
"10.0.0.0/8",
82
83
]
84
}
85
resource "aws_security_group_rule" "redpanda_node_group" {
0 commit comments