Skip to content

Commit

Permalink
chore: update ntp desc
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolnar-zscaler committed Sep 26, 2023
1 parent a23a8f2 commit 2e8f621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/terraform-zscc-sg-aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ resource "aws_vpc_security_group_egress_rule" "egress_cc_mgmt_tcp_443" {

resource "aws_vpc_security_group_egress_rule" "egress_cc_mgmt_udp_123" {
count = var.byo_security_group == false ? var.sg_count : 0
description = "Required: CC outbound UDP 123"
description = "Required: CC outbound NTP"
security_group_id = aws_security_group.cc_mgmt_sg[count.index].id
cidr_ipv4 = "0.0.0.0/0"
from_port = 123
Expand Down Expand Up @@ -124,7 +124,7 @@ resource "aws_vpc_security_group_egress_rule" "egress_cc_service_udp_443" {

resource "aws_vpc_security_group_egress_rule" "egress_cc_service_udp_123" {
count = var.byo_security_group == false ? var.sg_count : 0
description = "Required: CC outbound UDP 123"
description = "Required: CC outbound NTP"
security_group_id = aws_security_group.cc_service_sg[count.index].id
cidr_ipv4 = "0.0.0.0/0"
from_port = 123
Expand Down

0 comments on commit 2e8f621

Please sign in to comment.