We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b79ccc3 commit 0d5ff6cCopy full SHA for 0d5ff6c
cloud/proxy.tf
@@ -238,6 +238,16 @@ resource "aws_vpc_security_group_ingress_rule" "https" {
238
to_port = 443
239
}
240
241
+# https://search.opentofu.org/provider/hashicorp/aws/latest/docs/resources/vpc_security_group_ingress_rule
242
+resource "aws_vpc_security_group_ingress_rule" "ntp" {
243
+ security_group_id = aws_security_group.network.id
244
+
245
+ cidr_ipv4 = "0.0.0.0/0"
246
+ ip_protocol = "udp"
247
+ from_port = 123
248
+ to_port = 123
249
+}
250
251
# https://search.opentofu.org/provider/hashicorp/aws/latest/docs/resources/vpc_security_group_ingress_rule
252
resource "aws_vpc_security_group_ingress_rule" "wireguard" {
253
security_group_id = aws_security_group.network.id
0 commit comments