Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
drobinson-moj committed Dec 17, 2024
1 parent a93d3b9 commit db0777c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,15 +288,15 @@ locals {
}
# IMPORTANT: check if an 'allow all from load-balancer' rule is required
# IMPORTANT: check whether http/https traffic is still needed? It's in the original but not used at an app level
rpc_tcp_web = { # typo in name - this is for UDP but can't easily be changed
rpc_tcp_app = { # typo in name - this is for UDP but can't easily be changed
description = "135: UDP MS-RPC allow ingress from app and db servers"
from_port = 135
to_port = 135
protocol = "UDP"
security_groups = ["web", "database"]
# NOTE: csr_clientaccess will need to be added here to cidr_blocks
}
rpc_tcp_web2 = {
rpc_tcp_app2 = {
description = "135: TCP MS-RPC allow ingress from app and db servers"
from_port = 135
to_port = 135
Expand Down

0 comments on commit db0777c

Please sign in to comment.