github.com/blacked/terraform@v0.6.2-0.20150806163846-669c4ad71586/examples/aws-rds/variables.tf (about)

     1  variable "identifier" {
     2  	default = "mydb-rds"
     3      description = "Identifier for your DB"
     4  }
     5  
     6  variable "storage" {
     7  	default = "10"
     8      description = "Storage size in GB"
     9  }
    10  
    11  variable "engine" {
    12  	default = "postgres"
    13      description = "Engine type, example values mysql, postgres"
    14  }
    15  
    16  variable "engine_version" {
    17      description = "Engine version"
    18      default = {
    19          mysql = "5.6.22"
    20          postgres = "9.4.1"
    21      }
    22  }
    23  
    24  variable "instance_class" {
    25  	default = "db.t2.micro"
    26      description = "Instance class"
    27  }
    28  
    29  variable "db_name" {
    30  	default = "mydb"
    31      description = "db name"
    32  }
    33  
    34  variable "username" {
    35  	default = "myuser"
    36      description = "User name"
    37  }
    38  
    39  variable "password" {
    40      description = "password, provide through your ENV variables"
    41  }