From 2e8f62113d7f4945a87bd28595e5a18e1d95c092 Mon Sep 17 00:00:00 2001 From: Jameson Molnar Date: Mon, 25 Sep 2023 21:27:29 -0400 Subject: [PATCH] chore: update ntp desc --- modules/terraform-zscc-sg-aws/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/terraform-zscc-sg-aws/main.tf b/modules/terraform-zscc-sg-aws/main.tf index 6cce4770..24a63495 100755 --- a/modules/terraform-zscc-sg-aws/main.tf +++ b/modules/terraform-zscc-sg-aws/main.tf @@ -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 @@ -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