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 99af513 commit 3b5947cCopy full SHA for 3b5947c
nbe.tf
@@ -16,6 +16,14 @@ resource "aws_vpc_security_group_ingress_rule" "nbe_allow_https_in" {
16
ip_protocol = "tcp"
17
}
18
19
+resource "aws_vpc_security_group_ingress_rule" "nbe_allow_grpc_in" {
20
+ security_group_id = aws_security_group.nbe_lab.id
21
+ cidr_ipv4 = "0.0.0.0/0"
22
+ from_port = 80
23
+ to_port = 80
24
+ ip_protocol = "tcp"
25
+}
26
+
27
resource "aws_vpc_security_group_ingress_rule" "nbe_allow_30k_in" {
28
security_group_id = aws_security_group.nbe_lab.id
29
cidr_ipv4 = "0.0.0.0/0"
0 commit comments