resource "aws_security_group" "us-east-tf-sg" { name = "us-east-tf-sg" description = "us-east-tf-sg" vpc_id = "vpc-0da4f5c6f6db12a12" ingress { description = "Allow ICMP" from_port = -1 to_port = -1 protocol = "icmp" cidr_blocks = ["0.0.0.0/0"] } ingress { description = "Allow SSH" from_port = 22 to_port = 22 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"] } tags = { Name = "us-east-tf-sg" } }