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

     1  variable "cidr_blocks" {
     2  	default = "0.0.0.0/0"
     3      description = "CIDR for sg"
     4  }
     5  
     6  variable "sg_name" {
     7  	default = "rds_sg"
     8      description = "Tag Name for sg"
     9  }
    10