Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
resource "aws_security_group" "allow_vnc" {
name = "${local.module_prefix}-allow-vnc-sg"
vpc_id = var.vpc_id
ingress {
from_port = 5901
protocol = "tcp"
to_port = 5901
cidr_blocks = [
"0.0.0.0/0"]
}
egress {
from_port = 0
protocol = "-1"
to_port = 0
cidr_blocks = [
"0.0.0.0/0"]
}
}