github.com/2matz/terraform@v0.6.1-0.20150714181608-a03cbdb5d5bd/examples/aws-rds/sg.tf (about)

     1  resource "aws_security_group" "default" {
     2    name = "main_rds_sg"
     3    description = "Allow all inbound traffic"
     4    vpc_id = "${var.vpc_id}"
     5  
     6    ingress {
     7        from_port = 0
     8        to_port = 65535
     9        protocol = "TCP"
    10        cidr_blocks = ["${var.cidr_blocks}"]
    11    }
    12  
    13    egress {
    14        from_port = 0
    15        to_port = 0
    16        protocol = "-1"
    17        cidr_blocks = ["0.0.0.0/0"]
    18    }
    19  
    20    tags {
    21      Name = "${var.sg_name}"
    22    }
    23  }