Terraform - agent ec2 security group 수정

This commit is contained in:
dsk-minchulahn
2024-02-05 10:31:19 +09:00
parent 49deb4864a
commit 8f1760ee66

View File

@@ -5,8 +5,8 @@ resource "aws_security_group" "dsk-agent-allow-security" {
ingress {
description = "Allow SSH traffic"
from_port = 22
to_port = 22
from_port = 2222
to_port = 2222
protocol = "tcp"
cidr_blocks = ["39.115.183.236/32"]
}