1
私はAWSセキュリティグループのegress
プロパティがアウトバウンドトラフィックを制御することを理解していますが、-1というプロトコルが何を意味するのか誰にでも分かりますか?AWSセキュリティグループ出口プロトコル-1の意味は何ですか?
resource "aws_security_group" "elb" {
name = "example-elb”
ingress {
from_port = 80
to_port = 80
protocol = "tcp”
cidr_blocks = [" 0.0.0.0/ 0”]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [" 0.0.0.0/ 0"] }
}