resource "aws_security_group" "sg_port_80" {
description = "Acesso a porta 80"
vpc_id = module.vpc.vpc_id
name = "sg_port_80"
ingress {
protocol = "tcp"
from_port = 80
to_port = 80
cidr_blocks = local.ingress_cidr_blocks_ip.port-80 ? ["${local.remote_address.ip}/32"] : ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0", ]
}
tags = {
Name = "terraform_port_80"
}
}```
se não colocar a vpc não vai